aws_sdk_directconnect/client/delete_direct_connect_gateway_association_proposal.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 [`DeleteDirectConnectGatewayAssociationProposal`](crate::operation::delete_direct_connect_gateway_association_proposal::builders::DeleteDirectConnectGatewayAssociationProposalFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`proposal_id(impl Into<String>)`](crate::operation::delete_direct_connect_gateway_association_proposal::builders::DeleteDirectConnectGatewayAssociationProposalFluentBuilder::proposal_id) / [`set_proposal_id(Option<String>)`](crate::operation::delete_direct_connect_gateway_association_proposal::builders::DeleteDirectConnectGatewayAssociationProposalFluentBuilder::set_proposal_id):<br>required: **true**<br><p>The ID of the proposal.</p><br>
7 /// - On success, responds with [`DeleteDirectConnectGatewayAssociationProposalOutput`](crate::operation::delete_direct_connect_gateway_association_proposal::DeleteDirectConnectGatewayAssociationProposalOutput) with field(s):
8 /// - [`direct_connect_gateway_association_proposal(Option<DirectConnectGatewayAssociationProposal>)`](crate::operation::delete_direct_connect_gateway_association_proposal::DeleteDirectConnectGatewayAssociationProposalOutput::direct_connect_gateway_association_proposal): <p>The ID of the associated gateway.</p>
9 /// - On failure, responds with [`SdkError<DeleteDirectConnectGatewayAssociationProposalError>`](crate::operation::delete_direct_connect_gateway_association_proposal::DeleteDirectConnectGatewayAssociationProposalError)
10 pub fn delete_direct_connect_gateway_association_proposal(
11 &self,
12 ) -> crate::operation::delete_direct_connect_gateway_association_proposal::builders::DeleteDirectConnectGatewayAssociationProposalFluentBuilder
13 {
14 crate::operation::delete_direct_connect_gateway_association_proposal::builders::DeleteDirectConnectGatewayAssociationProposalFluentBuilder::new(self.handle.clone())
15 }
16}