aws_sdk_s3/operation/delete_bucket_encryption/builders.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub use crate::operation::delete_bucket_encryption::_delete_bucket_encryption_output::DeleteBucketEncryptionOutputBuilder;
3
4pub use crate::operation::delete_bucket_encryption::_delete_bucket_encryption_input::DeleteBucketEncryptionInputBuilder;
5
6impl crate::operation::delete_bucket_encryption::builders::DeleteBucketEncryptionInputBuilder {
7 /// Sends a request with this input using the given client.
8 pub async fn send_with(
9 self,
10 client: &crate::Client,
11 ) -> ::std::result::Result<
12 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionOutput,
13 ::aws_smithy_runtime_api::client::result::SdkError<
14 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionError,
15 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
16 >,
17 > {
18 let mut fluent_builder = client.delete_bucket_encryption();
19 fluent_builder.inner = self;
20 fluent_builder.send().await
21 }
22}
23/// Fluent builder constructing a request to `DeleteBucketEncryption`.
24///
25/// <p>This implementation of the DELETE action resets the default encryption for the bucket as server-side encryption with Amazon S3 managed keys (SSE-S3).</p><note>
26/// <ul>
27/// <li>
28/// <p><b>General purpose buckets</b> - For information about the bucket default encryption feature, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html">Amazon S3 Bucket Default Encryption</a> in the <i>Amazon S3 User Guide</i>.</p></li>
29/// <li>
30/// <p><b>Directory buckets</b> - For directory buckets, there are only two supported options for server-side encryption: SSE-S3 and SSE-KMS. For information about the default encryption configuration in directory buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-bucket-encryption.html">Setting default server-side encryption behavior for directory buckets</a>.</p></li>
31/// </ul>
32/// </note>
33/// <dl>
34/// <dt>
35/// Permissions
36/// </dt>
37/// <dd>
38/// <ul>
39/// <li>
40/// <p><b>General purpose bucket permissions</b> - The <code>s3:PutEncryptionConfiguration</code> permission is required in a policy. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-with-s3-actions.html#using-with-s3-actions-related-to-bucket-subresources">Permissions Related to Bucket Operations</a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-access-control.html">Managing Access Permissions to Your Amazon S3 Resources</a>.</p></li>
41/// <li>
42/// <p><b>Directory bucket permissions</b> - To grant access to this API operation, you must have the <code>s3express:PutEncryptionConfiguration</code> permission in an IAM identity-based policy instead of a bucket policy. Cross-account access to this API operation isn't supported. This operation can only be performed by the Amazon Web Services account that owns the resource. For more information about directory bucket policies and permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-security-iam.html">Amazon Web Services Identity and Access Management (IAM) for S3 Express One Zone</a> in the <i>Amazon S3 User Guide</i>.</p></li>
43/// </ul>
44/// </dd>
45/// <dt>
46/// HTTP Host header syntax
47/// </dt>
48/// <dd>
49/// <p><b>Directory buckets </b> - The HTTP Host header syntax is <code>s3express-control.<i>region-code</i>.amazonaws.com</code>.</p>
50/// </dd>
51/// </dl>
52/// <p>The following operations are related to <code>DeleteBucketEncryption</code>:</p>
53/// <ul>
54/// <li>
55/// <p><a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html">PutBucketEncryption</a></p></li>
56/// <li>
57/// <p><a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html">GetBucketEncryption</a></p></li>
58/// </ul><important>
59/// <p>You must URL encode any signed header values that contain spaces. For example, if your header value is <code>my file.txt</code>, containing two spaces after <code>my</code>, you must URL encode this value to <code>my%20%20file.txt</code>.</p>
60/// </important>
61#[derive(::std::clone::Clone, ::std::fmt::Debug)]
62pub struct DeleteBucketEncryptionFluentBuilder {
63 handle: ::std::sync::Arc<crate::client::Handle>,
64 inner: crate::operation::delete_bucket_encryption::builders::DeleteBucketEncryptionInputBuilder,
65 config_override: ::std::option::Option<crate::config::Builder>,
66}
67impl
68 crate::client::customize::internal::CustomizableSend<
69 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionOutput,
70 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionError,
71 > for DeleteBucketEncryptionFluentBuilder
72{
73 fn send(
74 self,
75 config_override: crate::config::Builder,
76 ) -> crate::client::customize::internal::BoxFuture<
77 crate::client::customize::internal::SendResult<
78 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionOutput,
79 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionError,
80 >,
81 > {
82 ::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
83 }
84}
85impl DeleteBucketEncryptionFluentBuilder {
86 /// Creates a new `DeleteBucketEncryptionFluentBuilder`.
87 pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
88 Self {
89 handle,
90 inner: ::std::default::Default::default(),
91 config_override: ::std::option::Option::None,
92 }
93 }
94 /// Access the DeleteBucketEncryption as a reference.
95 pub fn as_input(&self) -> &crate::operation::delete_bucket_encryption::builders::DeleteBucketEncryptionInputBuilder {
96 &self.inner
97 }
98 /// Sends the request and returns the response.
99 ///
100 /// If an error occurs, an `SdkError` will be returned with additional details that
101 /// can be matched against.
102 ///
103 /// By default, any retryable failures will be retried twice. Retry behavior
104 /// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
105 /// set when configuring the client.
106 pub async fn send(
107 self,
108 ) -> ::std::result::Result<
109 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionOutput,
110 ::aws_smithy_runtime_api::client::result::SdkError<
111 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionError,
112 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
113 >,
114 > {
115 let input = self
116 .inner
117 .build()
118 .map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
119 let runtime_plugins = crate::operation::delete_bucket_encryption::DeleteBucketEncryption::operation_runtime_plugins(
120 self.handle.runtime_plugins.clone(),
121 &self.handle.conf,
122 self.config_override,
123 );
124 crate::operation::delete_bucket_encryption::DeleteBucketEncryption::orchestrate(&runtime_plugins, input).await
125 }
126
127 /// Consumes this builder, creating a customizable operation that can be modified before being sent.
128 pub fn customize(
129 self,
130 ) -> crate::client::customize::CustomizableOperation<
131 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionOutput,
132 crate::operation::delete_bucket_encryption::DeleteBucketEncryptionError,
133 Self,
134 > {
135 crate::client::customize::CustomizableOperation::new(self)
136 }
137 pub(crate) fn config_override(mut self, config_override: impl ::std::convert::Into<crate::config::Builder>) -> Self {
138 self.set_config_override(::std::option::Option::Some(config_override.into()));
139 self
140 }
141
142 pub(crate) fn set_config_override(&mut self, config_override: ::std::option::Option<crate::config::Builder>) -> &mut Self {
143 self.config_override = config_override;
144 self
145 }
146 /// <p>The name of the bucket containing the server-side encryption configuration to delete.</p>
147 /// <p><b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i> </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code> <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code> <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i></p>
148 pub fn bucket(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
149 self.inner = self.inner.bucket(input.into());
150 self
151 }
152 /// <p>The name of the bucket containing the server-side encryption configuration to delete.</p>
153 /// <p><b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i> </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code> <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code> <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i></p>
154 pub fn set_bucket(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
155 self.inner = self.inner.set_bucket(input);
156 self
157 }
158 /// <p>The name of the bucket containing the server-side encryption configuration to delete.</p>
159 /// <p><b>Directory buckets </b> - When you use this operation with a directory bucket, you must use path-style requests in the format <code>https://s3express-control.<i>region-code</i>.amazonaws.com/<i>bucket-name</i> </code>. Virtual-hosted-style requests aren't supported. Directory bucket names must be unique in the chosen Zone (Availability Zone or Local Zone). Bucket names must also follow the format <code> <i>bucket-base-name</i>--<i>zone-id</i>--x-s3</code> (for example, <code> <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming rules</a> in the <i>Amazon S3 User Guide</i></p>
160 pub fn get_bucket(&self) -> &::std::option::Option<::std::string::String> {
161 self.inner.get_bucket()
162 }
163 /// <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p><note>
164 /// <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code <code>501 Not Implemented</code>.</p>
165 /// </note>
166 pub fn expected_bucket_owner(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
167 self.inner = self.inner.expected_bucket_owner(input.into());
168 self
169 }
170 /// <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p><note>
171 /// <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code <code>501 Not Implemented</code>.</p>
172 /// </note>
173 pub fn set_expected_bucket_owner(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
174 self.inner = self.inner.set_expected_bucket_owner(input);
175 self
176 }
177 /// <p>The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code <code>403 Forbidden</code> (access denied).</p><note>
178 /// <p>For directory buckets, this header is not supported in this API operation. If you specify this header, the request fails with the HTTP status code <code>501 Not Implemented</code>.</p>
179 /// </note>
180 pub fn get_expected_bucket_owner(&self) -> &::std::option::Option<::std::string::String> {
181 self.inner.get_expected_bucket_owner()
182 }
183}