AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; }
45 inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); }
46 inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); }
48 inline UpdateImageGenerationConfigurationRequest& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;}
49 inline UpdateImageGenerationConfigurationRequest& WithStreamName(const char* value) { SetStreamName(value); return *this;}
51
53
58 inline const Aws::String& GetStreamARN() const{ return m_streamARN; }
59 inline bool StreamARNHasBeenSet() const { return m_streamARNHasBeenSet; }
60 inline void SetStreamARN(const Aws::String& value) { m_streamARNHasBeenSet = true; m_streamARN = value; }
61 inline void SetStreamARN(Aws::String&& value) { m_streamARNHasBeenSet = true; m_streamARN = std::move(value); }
62 inline void SetStreamARN(const char* value) { m_streamARNHasBeenSet = true; m_streamARN.assign(value); }
64 inline UpdateImageGenerationConfigurationRequest& WithStreamARN(Aws::String&& value) { SetStreamARN(std::move(value)); return *this;}
65 inline UpdateImageGenerationConfigurationRequest& WithStreamARN(const char* value) { SetStreamARN(value); return *this;}
67
69
74 inline const ImageGenerationConfiguration& GetImageGenerationConfiguration() const{ return m_imageGenerationConfiguration; }
75 inline bool ImageGenerationConfigurationHasBeenSet() const { return m_imageGenerationConfigurationHasBeenSet; }
76 inline void SetImageGenerationConfiguration(const ImageGenerationConfiguration& value) { m_imageGenerationConfigurationHasBeenSet = true; m_imageGenerationConfiguration = value; }
77 inline void SetImageGenerationConfiguration(ImageGenerationConfiguration&& value) { m_imageGenerationConfigurationHasBeenSet = true; m_imageGenerationConfiguration = std::move(value); }
81 private:
82
83 Aws::String m_streamName;
84 bool m_streamNameHasBeenSet = false;
85
86 Aws::String m_streamARN;
87 bool m_streamARNHasBeenSet = false;
88
89 ImageGenerationConfiguration m_imageGenerationConfiguration;
90 bool m_imageGenerationConfigurationHasBeenSet = false;
91 };
92
93} // namespace Model
94} // namespace KinesisVideo
95} // namespace Aws
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
UpdateImageGenerationConfigurationRequest & WithStreamARN(const Aws::String &value)
UpdateImageGenerationConfigurationRequest & WithStreamARN(Aws::String &&value)
UpdateImageGenerationConfigurationRequest & WithStreamName(Aws::String &&value)
UpdateImageGenerationConfigurationRequest & WithStreamARN(const char *value)
UpdateImageGenerationConfigurationRequest & WithImageGenerationConfiguration(const ImageGenerationConfiguration &value)
UpdateImageGenerationConfigurationRequest & WithStreamName(const Aws::String &value)
UpdateImageGenerationConfigurationRequest & WithStreamName(const char *value)
UpdateImageGenerationConfigurationRequest & WithImageGenerationConfiguration(ImageGenerationConfiguration &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String