aws_sdk_cloudfront/client/
delete_field_level_encryption_config.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteFieldLevelEncryptionConfig`](crate::operation::delete_field_level_encryption_config::builders::DeleteFieldLevelEncryptionConfigFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`id(impl Into<String>)`](crate::operation::delete_field_level_encryption_config::builders::DeleteFieldLevelEncryptionConfigFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::delete_field_level_encryption_config::builders::DeleteFieldLevelEncryptionConfigFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the configuration you want to delete from CloudFront.</p><br>
7    ///   - [`if_match(impl Into<String>)`](crate::operation::delete_field_level_encryption_config::builders::DeleteFieldLevelEncryptionConfigFluentBuilder::if_match) / [`set_if_match(Option<String>)`](crate::operation::delete_field_level_encryption_config::builders::DeleteFieldLevelEncryptionConfigFluentBuilder::set_if_match):<br>required: **false**<br><p>The value of the <code>ETag</code> header that you received when retrieving the configuration identity to delete. For example: <code>E2QWRUHAPOMQZL</code>.</p><br>
8    /// - On success, responds with [`DeleteFieldLevelEncryptionConfigOutput`](crate::operation::delete_field_level_encryption_config::DeleteFieldLevelEncryptionConfigOutput)
9    /// - On failure, responds with [`SdkError<DeleteFieldLevelEncryptionConfigError>`](crate::operation::delete_field_level_encryption_config::DeleteFieldLevelEncryptionConfigError)
10    pub fn delete_field_level_encryption_config(
11        &self,
12    ) -> crate::operation::delete_field_level_encryption_config::builders::DeleteFieldLevelEncryptionConfigFluentBuilder {
13        crate::operation::delete_field_level_encryption_config::builders::DeleteFieldLevelEncryptionConfigFluentBuilder::new(self.handle.clone())
14    }
15}