AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateMediaStorageConfigurationRequest.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/MediaStorageConfiguration.h>
11#include <utility>
12
13namespace Aws
14{
15namespace KinesisVideo
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_KINESISVIDEO_API UpdateMediaStorageConfigurationRequest() = 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 "UpdateMediaStorageConfiguration"; }
32
33 AWS_KINESISVIDEO_API Aws::String SerializePayload() const override;
34
35
37
40 inline const Aws::String& GetChannelARN() const { return m_channelARN; }
41 inline bool ChannelARNHasBeenSet() const { return m_channelARNHasBeenSet; }
42 template<typename ChannelARNT = Aws::String>
43 void SetChannelARN(ChannelARNT&& value) { m_channelARNHasBeenSet = true; m_channelARN = std::forward<ChannelARNT>(value); }
44 template<typename ChannelARNT = Aws::String>
45 UpdateMediaStorageConfigurationRequest& WithChannelARN(ChannelARNT&& value) { SetChannelARN(std::forward<ChannelARNT>(value)); return *this;}
47
49
53 inline const MediaStorageConfiguration& GetMediaStorageConfiguration() const { return m_mediaStorageConfiguration; }
54 inline bool MediaStorageConfigurationHasBeenSet() const { return m_mediaStorageConfigurationHasBeenSet; }
55 template<typename MediaStorageConfigurationT = MediaStorageConfiguration>
56 void SetMediaStorageConfiguration(MediaStorageConfigurationT&& value) { m_mediaStorageConfigurationHasBeenSet = true; m_mediaStorageConfiguration = std::forward<MediaStorageConfigurationT>(value); }
57 template<typename MediaStorageConfigurationT = MediaStorageConfiguration>
58 UpdateMediaStorageConfigurationRequest& WithMediaStorageConfiguration(MediaStorageConfigurationT&& value) { SetMediaStorageConfiguration(std::forward<MediaStorageConfigurationT>(value)); return *this;}
60 private:
61
62 Aws::String m_channelARN;
63 bool m_channelARNHasBeenSet = false;
64
65 MediaStorageConfiguration m_mediaStorageConfiguration;
66 bool m_mediaStorageConfigurationHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace KinesisVideo
71} // namespace Aws
UpdateMediaStorageConfigurationRequest & WithMediaStorageConfiguration(MediaStorageConfigurationT &&value)
UpdateMediaStorageConfigurationRequest & WithChannelARN(ChannelARNT &&value)
AWS_KINESISVIDEO_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String