aws-sdk-networkfirewall 1.115.0

AWS SDK for AWS Network Firewall
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeContainerAssociation`](crate::operation::describe_container_association::builders::DescribeContainerAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`container_association_name(impl Into<String>)`](crate::operation::describe_container_association::builders::DescribeContainerAssociationFluentBuilder::container_association_name) / [`set_container_association_name(Option<String>)`](crate::operation::describe_container_association::builders::DescribeContainerAssociationFluentBuilder::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::describe_container_association::builders::DescribeContainerAssociationFluentBuilder::container_association_arn) / [`set_container_association_arn(Option<String>)`](crate::operation::describe_container_association::builders::DescribeContainerAssociationFluentBuilder::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 [`DescribeContainerAssociationOutput`](crate::operation::describe_container_association::DescribeContainerAssociationOutput) with field(s):
    ///   - [`container_association_name(Option<String>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::container_association_name): <p>The descriptive name of the container association.</p>
    ///   - [`container_association_arn(Option<String>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::container_association_arn): <p>The Amazon Resource Name (ARN) of the container association.</p>
    ///   - [`description(Option<String>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::description): <p>A description of the container association.</p>
    ///   - [`r#type(Option<ContainerMonitoringType>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::type): <p>The type of container orchestration platform. Either <code>ECS</code> or <code>EKS</code>.</p>
    ///   - [`container_monitoring_configurations(Option<Vec::<ContainerMonitoringConfiguration>>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::container_monitoring_configurations): <p>The container monitoring configurations for this container association.</p>
    ///   - [`status(Option<ContainerAssociationStatus>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::status): <p>The current status of the container association.</p>
    ///   - [`resolved_cidr_count(Option<i32>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::resolved_cidr_count): <p>The number of CIDR blocks that have been resolved from the monitored containers for this container association.</p>
    ///   - [`last_updated_time(Option<DateTime>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::last_updated_time): <p>The last time that the container association was updated or resolved new container IP addresses.</p>
    ///   - [`tags(Option<Vec::<Tag>>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::tags): <p>The key:value pairs associated with the resource.</p>
    ///   - [`update_token(Option<String>)`](crate::operation::describe_container_association::DescribeContainerAssociationOutput::update_token): <p>A token used for optimistic locking. Network Firewall returns a token to your requests that access the container association. The token marks the state of the container association resource at the time of the request.</p>
    /// - On failure, responds with [`SdkError<DescribeContainerAssociationError>`](crate::operation::describe_container_association::DescribeContainerAssociationError)
    pub fn describe_container_association(
        &self,
    ) -> crate::operation::describe_container_association::builders::DescribeContainerAssociationFluentBuilder {
        crate::operation::describe_container_association::builders::DescribeContainerAssociationFluentBuilder::new(self.handle.clone())
    }
}