AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
DeleteChannelPlacementGroupRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/medialive/MediaLiveRequest.h>
9#include <aws/medialive/MediaLive_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace MediaLive {
15namespace Model {
16
24 public:
25 AWS_MEDIALIVE_API DeleteChannelPlacementGroupRequest() = 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 "DeleteChannelPlacementGroup"; }
32
33 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
34
36
39 inline const Aws::String& GetChannelPlacementGroupId() const { return m_channelPlacementGroupId; }
40 inline bool ChannelPlacementGroupIdHasBeenSet() const { return m_channelPlacementGroupIdHasBeenSet; }
41 template <typename ChannelPlacementGroupIdT = Aws::String>
42 void SetChannelPlacementGroupId(ChannelPlacementGroupIdT&& value) {
43 m_channelPlacementGroupIdHasBeenSet = true;
44 m_channelPlacementGroupId = std::forward<ChannelPlacementGroupIdT>(value);
45 }
46 template <typename ChannelPlacementGroupIdT = Aws::String>
48 SetChannelPlacementGroupId(std::forward<ChannelPlacementGroupIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetClusterId() const { return m_clusterId; }
58 inline bool ClusterIdHasBeenSet() const { return m_clusterIdHasBeenSet; }
59 template <typename ClusterIdT = Aws::String>
60 void SetClusterId(ClusterIdT&& value) {
61 m_clusterIdHasBeenSet = true;
62 m_clusterId = std::forward<ClusterIdT>(value);
63 }
64 template <typename ClusterIdT = Aws::String>
66 SetClusterId(std::forward<ClusterIdT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_channelPlacementGroupId;
72
73 Aws::String m_clusterId;
74 bool m_channelPlacementGroupIdHasBeenSet = false;
75 bool m_clusterIdHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace MediaLive
80} // namespace Aws
DeleteChannelPlacementGroupRequest & WithChannelPlacementGroupId(ChannelPlacementGroupIdT &&value)
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
DeleteChannelPlacementGroupRequest & WithClusterId(ClusterIdT &&value)
AWS_MEDIALIVE_API DeleteChannelPlacementGroupRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String