AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PointsOfInterest.h
1
6#pragma once
7#include <aws/transcribestreaming/TranscribeStreamingService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/transcribestreaming/model/TimestampRange.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace TranscribeStreamingService
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_TRANSCRIBESTREAMINGSERVICE_API PointsOfInterest();
36 AWS_TRANSCRIBESTREAMINGSERVICE_API PointsOfInterest(Aws::Utils::Json::JsonView jsonValue);
37 AWS_TRANSCRIBESTREAMINGSERVICE_API PointsOfInterest& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
46 inline const Aws::Vector<TimestampRange>& GetTimestampRanges() const{ return m_timestampRanges; }
47 inline bool TimestampRangesHasBeenSet() const { return m_timestampRangesHasBeenSet; }
48 inline void SetTimestampRanges(const Aws::Vector<TimestampRange>& value) { m_timestampRangesHasBeenSet = true; m_timestampRanges = value; }
49 inline void SetTimestampRanges(Aws::Vector<TimestampRange>&& value) { m_timestampRangesHasBeenSet = true; m_timestampRanges = std::move(value); }
51 inline PointsOfInterest& WithTimestampRanges(Aws::Vector<TimestampRange>&& value) { SetTimestampRanges(std::move(value)); return *this;}
52 inline PointsOfInterest& AddTimestampRanges(const TimestampRange& value) { m_timestampRangesHasBeenSet = true; m_timestampRanges.push_back(value); return *this; }
53 inline PointsOfInterest& AddTimestampRanges(TimestampRange&& value) { m_timestampRangesHasBeenSet = true; m_timestampRanges.push_back(std::move(value)); return *this; }
55 private:
56
57 Aws::Vector<TimestampRange> m_timestampRanges;
58 bool m_timestampRangesHasBeenSet = false;
59 };
60
61} // namespace Model
62} // namespace TranscribeStreamingService
63} // namespace Aws
AWS_TRANSCRIBESTREAMINGSERVICE_API PointsOfInterest()
PointsOfInterest & AddTimestampRanges(TimestampRange &&value)
void SetTimestampRanges(const Aws::Vector< TimestampRange > &value)
PointsOfInterest & WithTimestampRanges(Aws::Vector< TimestampRange > &&value)
AWS_TRANSCRIBESTREAMINGSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_TRANSCRIBESTREAMINGSERVICE_API PointsOfInterest & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< TimestampRange > & GetTimestampRanges() const
void SetTimestampRanges(Aws::Vector< TimestampRange > &&value)
AWS_TRANSCRIBESTREAMINGSERVICE_API PointsOfInterest(Aws::Utils::Json::JsonView jsonValue)
PointsOfInterest & AddTimestampRanges(const TimestampRange &value)
PointsOfInterest & WithTimestampRanges(const Aws::Vector< TimestampRange > &value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue