AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateImageGenerationConfigurationRequest.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 <aws/kinesisvideo/model/ImageGenerationConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace KinesisVideo
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_KINESISVIDEO_API UpdateImageGenerationConfigurationRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "UpdateImageGenerationConfiguration"; }
32
33 AWS_KINESISVIDEO_API Aws::String SerializePayload() const override;
34
35
37
42 inline const Aws::String& GetStreamName() const { return m_streamName; }
43 inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; }
44 template<typename StreamNameT = Aws::String>
45 void SetStreamName(StreamNameT&& value) { m_streamNameHasBeenSet = true; m_streamName = std::forward<StreamNameT>(value); }
46 template<typename StreamNameT = Aws::String>
47 UpdateImageGenerationConfigurationRequest& WithStreamName(StreamNameT&& value) { SetStreamName(std::forward<StreamNameT>(value)); return *this;}
49
51
56 inline const Aws::String& GetStreamARN() const { return m_streamARN; }
57 inline bool StreamARNHasBeenSet() const { return m_streamARNHasBeenSet; }
58 template<typename StreamARNT = Aws::String>
59 void SetStreamARN(StreamARNT&& value) { m_streamARNHasBeenSet = true; m_streamARN = std::forward<StreamARNT>(value); }
60 template<typename StreamARNT = Aws::String>
61 UpdateImageGenerationConfigurationRequest& WithStreamARN(StreamARNT&& value) { SetStreamARN(std::forward<StreamARNT>(value)); return *this;}
63
65
70 inline const ImageGenerationConfiguration& GetImageGenerationConfiguration() const { return m_imageGenerationConfiguration; }
71 inline bool ImageGenerationConfigurationHasBeenSet() const { return m_imageGenerationConfigurationHasBeenSet; }
72 template<typename ImageGenerationConfigurationT = ImageGenerationConfiguration>
73 void SetImageGenerationConfiguration(ImageGenerationConfigurationT&& value) { m_imageGenerationConfigurationHasBeenSet = true; m_imageGenerationConfiguration = std::forward<ImageGenerationConfigurationT>(value); }
74 template<typename ImageGenerationConfigurationT = ImageGenerationConfiguration>
75 UpdateImageGenerationConfigurationRequest& WithImageGenerationConfiguration(ImageGenerationConfigurationT&& value) { SetImageGenerationConfiguration(std::forward<ImageGenerationConfigurationT>(value)); return *this;}
77 private:
78
79 Aws::String m_streamName;
80 bool m_streamNameHasBeenSet = false;
81
82 Aws::String m_streamARN;
83 bool m_streamARNHasBeenSet = false;
84
85 ImageGenerationConfiguration m_imageGenerationConfiguration;
86 bool m_imageGenerationConfigurationHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace KinesisVideo
91} // namespace Aws
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
UpdateImageGenerationConfigurationRequest & WithStreamARN(StreamARNT &&value)
UpdateImageGenerationConfigurationRequest & WithImageGenerationConfiguration(ImageGenerationConfigurationT &&value)
UpdateImageGenerationConfigurationRequest & WithStreamName(StreamNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String