Struct aws_sdk_ec2::input::CreateVpcPeeringConnectionInput [−][src]
#[non_exhaustive]pub struct CreateVpcPeeringConnectionInput {
pub dry_run: Option<bool>,
pub peer_owner_id: Option<String>,
pub peer_vpc_id: Option<String>,
pub vpc_id: Option<String>,
pub peer_region: Option<String>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
peer_owner_id: Option<String>
The Amazon Web Services account ID of the owner of the accepter VPC.
Default: Your Amazon Web Services account ID
peer_vpc_id: Option<String>
The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the request.
vpc_id: Option<String>
The ID of the requester VPC. You must specify this parameter in the request.
peer_region: Option<String>
The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request.
Default: The Region in which you make the request.
tag_specifications: Option<Vec<TagSpecification>>
The tags to assign to the peering connection.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateVpcPeeringConnection, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateVpcPeeringConnection, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateVpcPeeringConnection
>
Creates a new builder-style object to manufacture CreateVpcPeeringConnectionInput
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
The Amazon Web Services account ID of the owner of the accepter VPC.
Default: Your Amazon Web Services account ID
The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the request.
The ID of the requester VPC. You must specify this parameter in the request.
The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which you make the request.
Default: The Region in which you make the request.
The tags to assign to the peering connection.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for CreateVpcPeeringConnectionInput
impl Sync for CreateVpcPeeringConnectionInput
impl Unpin for CreateVpcPeeringConnectionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more