aws_sdk_connect/client/delete_predefined_attribute.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DeletePredefinedAttribute`](crate::operation::delete_predefined_attribute::builders::DeletePredefinedAttributeFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`instance_id(impl Into<String>)`](crate::operation::delete_predefined_attribute::builders::DeletePredefinedAttributeFluentBuilder::instance_id) / [`set_instance_id(Option<String>)`](crate::operation::delete_predefined_attribute::builders::DeletePredefinedAttributeFluentBuilder::set_instance_id):<br>required: **true**<br><p>The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::delete_predefined_attribute::builders::DeletePredefinedAttributeFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_predefined_attribute::builders::DeletePredefinedAttributeFluentBuilder::set_name):<br>required: **true**<br><p>The name of the predefined attribute.</p><br>
/// - On success, responds with [`DeletePredefinedAttributeOutput`](crate::operation::delete_predefined_attribute::DeletePredefinedAttributeOutput)
/// - On failure, responds with [`SdkError<DeletePredefinedAttributeError>`](crate::operation::delete_predefined_attribute::DeletePredefinedAttributeError)
pub fn delete_predefined_attribute(&self) -> crate::operation::delete_predefined_attribute::builders::DeletePredefinedAttributeFluentBuilder {
crate::operation::delete_predefined_attribute::builders::DeletePredefinedAttributeFluentBuilder::new(self.handle.clone())
}
}