aws_sdk_networkfirewall/client/delete_container_association.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 [`DeleteContainerAssociation`](crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`container_association_name(impl Into<String>)`](crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder::container_association_name) / [`set_container_association_name(Option<String>)`](crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder::set_container_association_name):<br>required: **false**<br><p>The descriptive name of the container association. You must specify the ARN or the name, and you can specify both.</p><br>
7 /// - [`container_association_arn(impl Into<String>)`](crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder::container_association_arn) / [`set_container_association_arn(Option<String>)`](crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder::set_container_association_arn):<br>required: **false**<br><p>The Amazon Resource Name (ARN) of the container association. You must specify the ARN or the name, and you can specify both.</p><br>
8 /// - On success, responds with [`DeleteContainerAssociationOutput`](crate::operation::delete_container_association::DeleteContainerAssociationOutput) with field(s):
9 /// - [`container_association_name(Option<String>)`](crate::operation::delete_container_association::DeleteContainerAssociationOutput::container_association_name): <p>The descriptive name of the container association.</p>
10 /// - [`container_association_arn(Option<String>)`](crate::operation::delete_container_association::DeleteContainerAssociationOutput::container_association_arn): <p>The Amazon Resource Name (ARN) of the container association.</p>
11 /// - [`status(Option<ContainerAssociationStatus>)`](crate::operation::delete_container_association::DeleteContainerAssociationOutput::status): <p>The current status of the container association.</p>
12 /// - On failure, responds with [`SdkError<DeleteContainerAssociationError>`](crate::operation::delete_container_association::DeleteContainerAssociationError)
13 pub fn delete_container_association(&self) -> crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder {
14 crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder::new(self.handle.clone())
15 }
16}