AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeImageGenerationConfigurationRequest.h
1
6#pragma once
7#include <aws/kinesisvideo/KinesisVideo_EXPORTS.h>
8#include <aws/kinesisvideo/KinesisVideoRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace KinesisVideo
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeImageGenerationConfiguration"; }
31
32 AWS_KINESISVIDEO_API Aws::String SerializePayload() const override;
33
34
36
41 inline const Aws::String& GetStreamName() const{ return m_streamName; }
42 inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; }
43 inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; }
44 inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); }
45 inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); }
47 inline DescribeImageGenerationConfigurationRequest& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;}
48 inline DescribeImageGenerationConfigurationRequest& WithStreamName(const char* value) { SetStreamName(value); return *this;}
50
52
57 inline const Aws::String& GetStreamARN() const{ return m_streamARN; }
58 inline bool StreamARNHasBeenSet() const { return m_streamARNHasBeenSet; }
59 inline void SetStreamARN(const Aws::String& value) { m_streamARNHasBeenSet = true; m_streamARN = value; }
60 inline void SetStreamARN(Aws::String&& value) { m_streamARNHasBeenSet = true; m_streamARN = std::move(value); }
61 inline void SetStreamARN(const char* value) { m_streamARNHasBeenSet = true; m_streamARN.assign(value); }
63 inline DescribeImageGenerationConfigurationRequest& WithStreamARN(Aws::String&& value) { SetStreamARN(std::move(value)); return *this;}
64 inline DescribeImageGenerationConfigurationRequest& WithStreamARN(const char* value) { SetStreamARN(value); return *this;}
66 private:
67
68 Aws::String m_streamName;
69 bool m_streamNameHasBeenSet = false;
70
71 Aws::String m_streamARN;
72 bool m_streamARNHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace KinesisVideo
77} // namespace Aws
DescribeImageGenerationConfigurationRequest & WithStreamName(Aws::String &&value)
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
DescribeImageGenerationConfigurationRequest & WithStreamARN(const char *value)
DescribeImageGenerationConfigurationRequest & WithStreamName(const char *value)
DescribeImageGenerationConfigurationRequest & WithStreamARN(const Aws::String &value)
DescribeImageGenerationConfigurationRequest & WithStreamName(const Aws::String &value)
DescribeImageGenerationConfigurationRequest & WithStreamARN(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String