AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteIdentityPropagationConfigRequest.h
1
6#pragma once
7#include <aws/quicksight/QuickSight_EXPORTS.h>
8#include <aws/quicksight/QuickSightRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/quicksight/model/ServiceType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace QuickSight
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 "DeleteIdentityPropagationConfig"; }
32
33 AWS_QUICKSIGHT_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; }
42 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
43 inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; }
44 inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); }
45 inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); }
47 inline DeleteIdentityPropagationConfigRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
48 inline DeleteIdentityPropagationConfigRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
50
52
56 inline const ServiceType& GetService() const{ return m_service; }
57 inline bool ServiceHasBeenSet() const { return m_serviceHasBeenSet; }
58 inline void SetService(const ServiceType& value) { m_serviceHasBeenSet = true; m_service = value; }
59 inline void SetService(ServiceType&& value) { m_serviceHasBeenSet = true; m_service = std::move(value); }
60 inline DeleteIdentityPropagationConfigRequest& WithService(const ServiceType& value) { SetService(value); return *this;}
61 inline DeleteIdentityPropagationConfigRequest& WithService(ServiceType&& value) { SetService(std::move(value)); return *this;}
63 private:
64
65 Aws::String m_awsAccountId;
66 bool m_awsAccountIdHasBeenSet = false;
67
68 ServiceType m_service;
69 bool m_serviceHasBeenSet = false;
70 };
71
72} // namespace Model
73} // namespace QuickSight
74} // namespace Aws
AWS_QUICKSIGHT_API Aws::String SerializePayload() const override
DeleteIdentityPropagationConfigRequest & WithAwsAccountId(const char *value)
DeleteIdentityPropagationConfigRequest & WithAwsAccountId(const Aws::String &value)
DeleteIdentityPropagationConfigRequest & WithService(const ServiceType &value)
DeleteIdentityPropagationConfigRequest & WithService(ServiceType &&value)
DeleteIdentityPropagationConfigRequest & WithAwsAccountId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String