aws_sdk_gamelift/client/describe_vpc_peering_authorizations.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 [`DescribeVpcPeeringAuthorizations`](crate::operation::describe_vpc_peering_authorizations::builders::DescribeVpcPeeringAuthorizationsFluentBuilder) operation.
4 ///
5 /// - The fluent builder takes no input, just [`send`](crate::operation::describe_vpc_peering_authorizations::builders::DescribeVpcPeeringAuthorizationsFluentBuilder::send) it.
6 /// - On success, responds with [`DescribeVpcPeeringAuthorizationsOutput`](crate::operation::describe_vpc_peering_authorizations::DescribeVpcPeeringAuthorizationsOutput) with field(s):
7 /// - [`vpc_peering_authorizations(Option<Vec::<VpcPeeringAuthorization>>)`](crate::operation::describe_vpc_peering_authorizations::DescribeVpcPeeringAuthorizationsOutput::vpc_peering_authorizations): <p>A collection of objects that describe all valid VPC peering operations for the current Amazon Web Services account.</p>
8 /// - On failure, responds with [`SdkError<DescribeVpcPeeringAuthorizationsError>`](crate::operation::describe_vpc_peering_authorizations::DescribeVpcPeeringAuthorizationsError)
9 pub fn describe_vpc_peering_authorizations(
10 &self,
11 ) -> crate::operation::describe_vpc_peering_authorizations::builders::DescribeVpcPeeringAuthorizationsFluentBuilder {
12 crate::operation::describe_vpc_peering_authorizations::builders::DescribeVpcPeeringAuthorizationsFluentBuilder::new(self.handle.clone())
13 }
14}