AWS SDK for C++

AWS SDK for C++ Version 1.11.742

Loading...
Searching...
No Matches
UpdateAccountConfigurationRequest.h
1
6#pragma once
7#include <aws/medialive/MediaLiveRequest.h>
8#include <aws/medialive/MediaLive_EXPORTS.h>
9#include <aws/medialive/model/AccountConfiguration.h>
10
11#include <utility>
12
13namespace Aws {
14namespace MediaLive {
15namespace Model {
16
23 public:
24 AWS_MEDIALIVE_API UpdateAccountConfigurationRequest() = default;
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 "UpdateAccountConfiguration"; }
31
32 AWS_MEDIALIVE_API Aws::String SerializePayload() const override;
33
35
36 inline const AccountConfiguration& GetAccountConfiguration() const { return m_accountConfiguration; }
37 inline bool AccountConfigurationHasBeenSet() const { return m_accountConfigurationHasBeenSet; }
38 template <typename AccountConfigurationT = AccountConfiguration>
39 void SetAccountConfiguration(AccountConfigurationT&& value) {
40 m_accountConfigurationHasBeenSet = true;
41 m_accountConfiguration = std::forward<AccountConfigurationT>(value);
42 }
43 template <typename AccountConfigurationT = AccountConfiguration>
45 SetAccountConfiguration(std::forward<AccountConfigurationT>(value));
46 return *this;
47 }
49 private:
50 AccountConfiguration m_accountConfiguration;
51 bool m_accountConfigurationHasBeenSet = false;
52};
53
54} // namespace Model
55} // namespace MediaLive
56} // namespace Aws
AWS_MEDIALIVE_API Aws::String SerializePayload() const override
UpdateAccountConfigurationRequest & WithAccountConfiguration(AccountConfigurationT &&value)
AWS_MEDIALIVE_API UpdateAccountConfigurationRequest()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String