aws_sdk_interconnect/client/describe_connection_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 [`DescribeConnectionProposal`](crate::operation::describe_connection_proposal::builders::DescribeConnectionProposalFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`activation_key(impl Into<String>)`](crate::operation::describe_connection_proposal::builders::DescribeConnectionProposalFluentBuilder::activation_key) / [`set_activation_key(Option<String>)`](crate::operation::describe_connection_proposal::builders::DescribeConnectionProposalFluentBuilder::set_activation_key):<br>required: **true**<br><p>An Activation Key that was generated on a supported partner's portal. This key captures the desired parameters from the initial creation request.</p><br>
7 /// - On success, responds with [`DescribeConnectionProposalOutput`](crate::operation::describe_connection_proposal::DescribeConnectionProposalOutput) with field(s):
8 /// - [`bandwidth(String)`](crate::operation::describe_connection_proposal::DescribeConnectionProposalOutput::bandwidth): <p>The bandwidth of the proposed <code>Connection</code>.</p>
9 /// - [`environment_id(String)`](crate::operation::describe_connection_proposal::DescribeConnectionProposalOutput::environment_id): <p>The identifier of the <code>Environment</code> upon which the <code>Connection</code> would be placed if this proposal were accepted.</p>
10 /// - [`provider(Option<Provider>)`](crate::operation::describe_connection_proposal::DescribeConnectionProposalOutput::provider): <p>The partner provider of the specific <code>Environment</code> of the proposal.</p>
11 /// - [`location(String)`](crate::operation::describe_connection_proposal::DescribeConnectionProposalOutput::location): <p>The partner specific location distinguisher of the specific <code>Environment</code> of the proposal.</p>
12 /// - On failure, responds with [`SdkError<DescribeConnectionProposalError>`](crate::operation::describe_connection_proposal::DescribeConnectionProposalError)
13 pub fn describe_connection_proposal(&self) -> crate::operation::describe_connection_proposal::builders::DescribeConnectionProposalFluentBuilder {
14 crate::operation::describe_connection_proposal::builders::DescribeConnectionProposalFluentBuilder::new(self.handle.clone())
15 }
16}