aws-sdk-networkfirewall 1.115.0

AWS SDK for AWS Network Firewall
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteContainerAssociation`](crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DeleteContainerAssociationOutput`](crate::operation::delete_container_association::DeleteContainerAssociationOutput) with field(s):
    ///   - [`container_association_name(Option<String>)`](crate::operation::delete_container_association::DeleteContainerAssociationOutput::container_association_name): <p>The descriptive name of the container association.</p>
    ///   - [`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>
    ///   - [`status(Option<ContainerAssociationStatus>)`](crate::operation::delete_container_association::DeleteContainerAssociationOutput::status): <p>The current status of the container association.</p>
    /// - On failure, responds with [`SdkError<DeleteContainerAssociationError>`](crate::operation::delete_container_association::DeleteContainerAssociationError)
    pub fn delete_container_association(&self) -> crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder {
        crate::operation::delete_container_association::builders::DeleteContainerAssociationFluentBuilder::new(self.handle.clone())
    }
}