aws_sdk_vpclattice/client/
get_service_network_service_association.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetServiceNetworkServiceAssociation`](crate::operation::get_service_network_service_association::builders::GetServiceNetworkServiceAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`service_network_service_association_identifier(impl Into<String>)`](crate::operation::get_service_network_service_association::builders::GetServiceNetworkServiceAssociationFluentBuilder::service_network_service_association_identifier) / [`set_service_network_service_association_identifier(Option<String>)`](crate::operation::get_service_network_service_association::builders::GetServiceNetworkServiceAssociationFluentBuilder::set_service_network_service_association_identifier):<br>required: **true**<br><p>The ID or Amazon Resource Name (ARN) of the association.</p><br>
    /// - On success, responds with [`GetServiceNetworkServiceAssociationOutput`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::id): <p>The ID of the service network and service association.</p>
    ///   - [`status(Option<ServiceNetworkServiceAssociationStatus>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::status): <p>The status of the association.</p>
    ///   - [`arn(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::arn): <p>The Amazon Resource Name (ARN) of the association.</p>
    ///   - [`created_by(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::created_by): <p>The account that created the association.</p>
    ///   - [`created_at(Option<DateTime>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::created_at): <p>The date and time that the association was created, specified in ISO-8601 format.</p>
    ///   - [`service_id(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::service_id): <p>The ID of the service.</p>
    ///   - [`service_name(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::service_name): <p>The name of the service.</p>
    ///   - [`service_arn(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::service_arn): <p>The Amazon Resource Name (ARN) of the service.</p>
    ///   - [`service_network_id(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::service_network_id): <p>The ID of the service network.</p>
    ///   - [`service_network_name(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::service_network_name): <p>The name of the service network.</p>
    ///   - [`service_network_arn(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::service_network_arn): <p>The Amazon Resource Name (ARN) of the service network.</p>
    ///   - [`dns_entry(Option<DnsEntry>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::dns_entry): <p>The DNS name of the service.</p>
    ///   - [`custom_domain_name(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::custom_domain_name): <p>The custom domain name of the service.</p>
    ///   - [`failure_message(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::failure_message): <p>The failure message.</p>
    ///   - [`failure_code(Option<String>)`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationOutput::failure_code): <p>The failure code.</p>
    /// - On failure, responds with [`SdkError<GetServiceNetworkServiceAssociationError>`](crate::operation::get_service_network_service_association::GetServiceNetworkServiceAssociationError)
    pub fn get_service_network_service_association(
        &self,
    ) -> crate::operation::get_service_network_service_association::builders::GetServiceNetworkServiceAssociationFluentBuilder {
        crate::operation::get_service_network_service_association::builders::GetServiceNetworkServiceAssociationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}