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