aws_sdk_vpclattice/client/
delete_resource_endpoint_association.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteResourceEndpointAssociation`](crate::operation::delete_resource_endpoint_association::builders::DeleteResourceEndpointAssociationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`resource_endpoint_association_identifier(impl Into<String>)`](crate::operation::delete_resource_endpoint_association::builders::DeleteResourceEndpointAssociationFluentBuilder::resource_endpoint_association_identifier) / [`set_resource_endpoint_association_identifier(Option<String>)`](crate::operation::delete_resource_endpoint_association::builders::DeleteResourceEndpointAssociationFluentBuilder::set_resource_endpoint_association_identifier):<br>required: **true**<br><p>The ID or ARN of the association.</p><br>
    /// - On success, responds with [`DeleteResourceEndpointAssociationOutput`](crate::operation::delete_resource_endpoint_association::DeleteResourceEndpointAssociationOutput) with field(s):
    ///   - [`id(Option<String>)`](crate::operation::delete_resource_endpoint_association::DeleteResourceEndpointAssociationOutput::id): <p>The ID of the association.</p>
    ///   - [`arn(Option<String>)`](crate::operation::delete_resource_endpoint_association::DeleteResourceEndpointAssociationOutput::arn): <p>The Amazon Resource Name (ARN) of the association.</p>
    ///   - [`resource_configuration_id(Option<String>)`](crate::operation::delete_resource_endpoint_association::DeleteResourceEndpointAssociationOutput::resource_configuration_id): <p>The ID of the resource configuration.</p>
    ///   - [`resource_configuration_arn(Option<String>)`](crate::operation::delete_resource_endpoint_association::DeleteResourceEndpointAssociationOutput::resource_configuration_arn): <p>The Amazon Resource Name (ARN) of the resource configuration associated with the VPC endpoint of type resource.</p>
    ///   - [`vpc_endpoint_id(Option<String>)`](crate::operation::delete_resource_endpoint_association::DeleteResourceEndpointAssociationOutput::vpc_endpoint_id): <p>The ID of the resource VPC endpoint that is associated with the resource configuration.</p>
    /// - On failure, responds with [`SdkError<DeleteResourceEndpointAssociationError>`](crate::operation::delete_resource_endpoint_association::DeleteResourceEndpointAssociationError)
    pub fn delete_resource_endpoint_association(
        &self,
    ) -> crate::operation::delete_resource_endpoint_association::builders::DeleteResourceEndpointAssociationFluentBuilder {
        crate::operation::delete_resource_endpoint_association::builders::DeleteResourceEndpointAssociationFluentBuilder::new(self.handle.clone())
    }
}