AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteMultiRegionAccessPointRequest.h
1
6#pragma once
7#include <aws/s3control/S3Control_EXPORTS.h>
8#include <aws/s3control/S3ControlRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/s3control/model/DeleteMultiRegionAccessPointInput.h>
11#include <utility>
12#include <aws/core/utils/UUID.h>
13
14namespace Aws
15{
16namespace S3Control
17{
18namespace Model
19{
20
24 {
25 public:
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "DeleteMultiRegionAccessPoint"; }
33
34 AWS_S3CONTROL_API Aws::String SerializePayload() const override;
35
37
38 AWS_S3CONTROL_API inline bool ShouldComputeContentMd5() const override { return true; }
39
43 AWS_S3CONTROL_API EndpointParameters GetEndpointContextParams() const override;
44
46
50 inline const Aws::String& GetAccountId() const{ return m_accountId; }
51 inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
52 inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
53 inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
54 inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
55 inline DeleteMultiRegionAccessPointRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
56 inline DeleteMultiRegionAccessPointRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
57 inline DeleteMultiRegionAccessPointRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
59
61
65 inline const Aws::String& GetClientToken() const{ return m_clientToken; }
66 inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
67 inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
68 inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
69 inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
71 inline DeleteMultiRegionAccessPointRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
72 inline DeleteMultiRegionAccessPointRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
74
76
80 inline const DeleteMultiRegionAccessPointInput& GetDetails() const{ return m_details; }
81 inline bool DetailsHasBeenSet() const { return m_detailsHasBeenSet; }
82 inline void SetDetails(const DeleteMultiRegionAccessPointInput& value) { m_detailsHasBeenSet = true; m_details = value; }
83 inline void SetDetails(DeleteMultiRegionAccessPointInput&& value) { m_detailsHasBeenSet = true; m_details = std::move(value); }
87 private:
88
89 Aws::String m_accountId;
90 bool m_accountIdHasBeenSet = false;
91
92 Aws::String m_clientToken;
93 bool m_clientTokenHasBeenSet = false;
94
96 bool m_detailsHasBeenSet = false;
97 };
98
99} // namespace Model
100} // namespace S3Control
101} // namespace Aws
DeleteMultiRegionAccessPointRequest & WithAccountId(const Aws::String &value)
void SetDetails(const DeleteMultiRegionAccessPointInput &value)
DeleteMultiRegionAccessPointRequest & WithAccountId(Aws::String &&value)
DeleteMultiRegionAccessPointRequest & WithDetails(const DeleteMultiRegionAccessPointInput &value)
DeleteMultiRegionAccessPointRequest & WithClientToken(const Aws::String &value)
DeleteMultiRegionAccessPointRequest & WithDetails(DeleteMultiRegionAccessPointInput &&value)
AWS_S3CONTROL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteMultiRegionAccessPointRequest & WithClientToken(Aws::String &&value)
AWS_S3CONTROL_API Aws::String SerializePayload() const override
DeleteMultiRegionAccessPointRequest & WithClientToken(const char *value)
AWS_S3CONTROL_API EndpointParameters GetEndpointContextParams() const override
DeleteMultiRegionAccessPointRequest & WithAccountId(const char *value)
Aws::Endpoint::EndpointParameters EndpointParameters
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String