AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteBucketReplicationRequest.h
1
6#pragma once
7#include <aws/s3-crt/S3Crt_EXPORTS.h>
8#include <aws/s3-crt/S3CrtRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSMap.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace S3Crt
20{
21namespace Model
22{
23
27 {
28 public:
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "DeleteBucketReplication"; }
36
37 AWS_S3CRT_API Aws::String SerializePayload() const override;
38
39 AWS_S3CRT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
42
43 AWS_S3CRT_API bool HasEmbeddedError(IOStream &body, const Http::HeaderValueCollection &header) const override;
47 AWS_S3CRT_API EndpointParameters GetEndpointContextParams() const override;
48
50
53 inline const Aws::String& GetBucket() const{ return m_bucket; }
54 inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; }
55 inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; }
56 inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); }
57 inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); }
58 inline DeleteBucketReplicationRequest& WithBucket(const Aws::String& value) { SetBucket(value); return *this;}
59 inline DeleteBucketReplicationRequest& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;}
60 inline DeleteBucketReplicationRequest& WithBucket(const char* value) { SetBucket(value); return *this;}
62
64
69 inline const Aws::String& GetExpectedBucketOwner() const{ return m_expectedBucketOwner; }
70 inline bool ExpectedBucketOwnerHasBeenSet() const { return m_expectedBucketOwnerHasBeenSet; }
71 inline void SetExpectedBucketOwner(const Aws::String& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = value; }
72 inline void SetExpectedBucketOwner(Aws::String&& value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner = std::move(value); }
73 inline void SetExpectedBucketOwner(const char* value) { m_expectedBucketOwnerHasBeenSet = true; m_expectedBucketOwner.assign(value); }
76 inline DeleteBucketReplicationRequest& WithExpectedBucketOwner(const char* value) { SetExpectedBucketOwner(value); return *this;}
78
80
81 inline const Aws::Map<Aws::String, Aws::String>& GetCustomizedAccessLogTag() const{ return m_customizedAccessLogTag; }
82 inline bool CustomizedAccessLogTagHasBeenSet() const { return m_customizedAccessLogTagHasBeenSet; }
83 inline void SetCustomizedAccessLogTag(const Aws::Map<Aws::String, Aws::String>& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = value; }
84 inline void SetCustomizedAccessLogTag(Aws::Map<Aws::String, Aws::String>&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag = std::move(value); }
87 inline DeleteBucketReplicationRequest& AddCustomizedAccessLogTag(const Aws::String& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; }
88 inline DeleteBucketReplicationRequest& AddCustomizedAccessLogTag(Aws::String&& key, const Aws::String& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; }
89 inline DeleteBucketReplicationRequest& AddCustomizedAccessLogTag(const Aws::String& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; }
90 inline DeleteBucketReplicationRequest& AddCustomizedAccessLogTag(Aws::String&& key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), std::move(value)); return *this; }
91 inline DeleteBucketReplicationRequest& AddCustomizedAccessLogTag(const char* key, Aws::String&& value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, std::move(value)); return *this; }
92 inline DeleteBucketReplicationRequest& AddCustomizedAccessLogTag(Aws::String&& key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(std::move(key), value); return *this; }
93 inline DeleteBucketReplicationRequest& AddCustomizedAccessLogTag(const char* key, const char* value) { m_customizedAccessLogTagHasBeenSet = true; m_customizedAccessLogTag.emplace(key, value); return *this; }
95 private:
96
97 Aws::String m_bucket;
98 bool m_bucketHasBeenSet = false;
99
100 Aws::String m_expectedBucketOwner;
101 bool m_expectedBucketOwnerHasBeenSet = false;
102
103 Aws::Map<Aws::String, Aws::String> m_customizedAccessLogTag;
104 bool m_customizedAccessLogTagHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace S3Crt
109} // namespace Aws
DeleteBucketReplicationRequest & AddCustomizedAccessLogTag(Aws::String &&key, Aws::String &&value)
DeleteBucketReplicationRequest & AddCustomizedAccessLogTag(Aws::String &&key, const Aws::String &value)
void SetCustomizedAccessLogTag(Aws::Map< Aws::String, Aws::String > &&value)
AWS_S3CRT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DeleteBucketReplicationRequest & WithCustomizedAccessLogTag(const Aws::Map< Aws::String, Aws::String > &value)
AWS_S3CRT_API EndpointParameters GetEndpointContextParams() const override
const Aws::Map< Aws::String, Aws::String > & GetCustomizedAccessLogTag() const
DeleteBucketReplicationRequest & AddCustomizedAccessLogTag(const char *key, Aws::String &&value)
DeleteBucketReplicationRequest & WithExpectedBucketOwner(const Aws::String &value)
DeleteBucketReplicationRequest & WithBucket(Aws::String &&value)
AWS_S3CRT_API Aws::String SerializePayload() const override
DeleteBucketReplicationRequest & WithCustomizedAccessLogTag(Aws::Map< Aws::String, Aws::String > &&value)
DeleteBucketReplicationRequest & AddCustomizedAccessLogTag(Aws::String &&key, const char *value)
AWS_S3CRT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
void SetCustomizedAccessLogTag(const Aws::Map< Aws::String, Aws::String > &value)
DeleteBucketReplicationRequest & WithExpectedBucketOwner(Aws::String &&value)
DeleteBucketReplicationRequest & WithBucket(const char *value)
DeleteBucketReplicationRequest & AddCustomizedAccessLogTag(const char *key, const char *value)
AWS_S3CRT_API bool HasEmbeddedError(IOStream &body, const Http::HeaderValueCollection &header) const override
DeleteBucketReplicationRequest & AddCustomizedAccessLogTag(const Aws::String &key, Aws::String &&value)
DeleteBucketReplicationRequest & WithBucket(const Aws::String &value)
DeleteBucketReplicationRequest & AddCustomizedAccessLogTag(const Aws::String &key, const Aws::String &value)
DeleteBucketReplicationRequest & WithExpectedBucketOwner(const char *value)
Aws::Endpoint::EndpointParameters EndpointParameters
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_iostream< char, std::char_traits< char > > IOStream
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String