AWS SDK for C++

AWS SDK for C++ Version 1.11.749

Loading...
Searching...
No Matches
DeleteIdentityPropagationConfigRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/quicksight/QuickSight_EXPORTS.h>
10#include <aws/quicksight/model/ServiceType.h>
11
12#include <utility>
13
14namespace Aws {
15namespace QuickSight {
16namespace Model {
17
21 public:
22 AWS_QUICKSIGHT_API DeleteIdentityPropagationConfigRequest() = default;
23
24 // Service request name is the Operation name which will send this request out,
25 // each operation should has unique request name, so that we can get operation's name from this request.
26 // Note: this is not true for response, multiple operations may have the same response name,
27 // so we can not get operation's name from response.
28 inline virtual const char* GetServiceRequestName() const override { return "DeleteIdentityPropagationConfig"; }
29
30 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
31
33
37 inline const Aws::String& GetAwsAccountId() const { return m_awsAccountId; }
38 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
39 template <typename AwsAccountIdT = Aws::String>
40 void SetAwsAccountId(AwsAccountIdT&& value) {
41 m_awsAccountIdHasBeenSet = true;
42 m_awsAccountId = std::forward<AwsAccountIdT>(value);
43 }
44 template <typename AwsAccountIdT = Aws::String>
46 SetAwsAccountId(std::forward<AwsAccountIdT>(value));
47 return *this;
48 }
50
52
56 inline ServiceType GetService() const { return m_service; }
57 inline bool ServiceHasBeenSet() const { return m_serviceHasBeenSet; }
58 inline void SetService(ServiceType value) {
59 m_serviceHasBeenSet = true;
60 m_service = value;
61 }
63 SetService(value);
64 return *this;
65 }
67 private:
68 Aws::String m_awsAccountId;
69
71 bool m_awsAccountIdHasBeenSet = false;
72 bool m_serviceHasBeenSet = false;
73};
74
75} // namespace Model
76} // namespace QuickSight
77} // namespace Aws
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
DeleteIdentityPropagationConfigRequest & WithAwsAccountId(AwsAccountIdT &&value)
DeleteIdentityPropagationConfigRequest & WithService(ServiceType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String