// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateVpcPeeringConnection`](crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`fleet_id(impl Into<String>)`](crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder::fleet_id) / [`set_fleet_id(Option<String>)`](crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder::set_fleet_id):<br>required: **true**<br><p>A unique identifier for the fleet. You can use either the fleet ID or ARN value. This tells Amazon GameLift which GameLift VPC to peer with.</p><br>
/// - [`peer_vpc_aws_account_id(impl Into<String>)`](crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder::peer_vpc_aws_account_id) / [`set_peer_vpc_aws_account_id(Option<String>)`](crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder::set_peer_vpc_aws_account_id):<br>required: **true**<br><p>A unique identifier for the Amazon Web Services account with the VPC that you want to peer your Amazon GameLift fleet with. You can find your Account ID in the Amazon Web Services Management Console under account settings.</p><br>
/// - [`peer_vpc_id(impl Into<String>)`](crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder::peer_vpc_id) / [`set_peer_vpc_id(Option<String>)`](crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder::set_peer_vpc_id):<br>required: **true**<br><p>A unique identifier for a VPC with resources to be accessed by your Amazon GameLift fleet. The VPC must be in the same Region as your fleet. To look up a VPC ID, use the <a href="https://console.aws.amazon.com/vpc/">VPC Dashboard</a> in the Amazon Web Services Management Console. Learn more about VPC peering in <a href="https://docs.aws.amazon.com/gamelift/latest/developerguide/vpc-peering.html">VPC Peering with Amazon GameLift Fleets</a>.</p><br>
/// - On success, responds with [`CreateVpcPeeringConnectionOutput`](crate::operation::create_vpc_peering_connection::CreateVpcPeeringConnectionOutput)
/// - On failure, responds with [`SdkError<CreateVpcPeeringConnectionError>`](crate::operation::create_vpc_peering_connection::CreateVpcPeeringConnectionError)
pub fn create_vpc_peering_connection(
&self,
) -> crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder {
crate::operation::create_vpc_peering_connection::builders::CreateVpcPeeringConnectionFluentBuilder::new(self.handle.clone())
}
}