Struct aws_sdk_ec2::operation::create_vpc_peering_connection::CreateVpcPeeringConnectionInput
source · #[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§
source§impl CreateVpcPeeringConnectionInput
impl CreateVpcPeeringConnectionInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> 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
.
sourcepub fn peer_owner_id(&self) -> Option<&str>
pub fn peer_owner_id(&self) -> Option<&str>
The Amazon Web Services account ID of the owner of the accepter VPC.
Default: Your Amazon Web Services account ID
sourcepub fn peer_vpc_id(&self) -> Option<&str>
pub fn peer_vpc_id(&self) -> Option<&str>
The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the request.
sourcepub fn vpc_id(&self) -> Option<&str>
pub fn vpc_id(&self) -> Option<&str>
The ID of the requester VPC. You must specify this parameter in the request.
sourcepub fn peer_region(&self) -> Option<&str>
pub fn peer_region(&self) -> Option<&str>
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.
sourcepub fn tag_specifications(&self) -> Option<&[TagSpecification]>
pub fn tag_specifications(&self) -> Option<&[TagSpecification]>
The tags to assign to the peering connection.
source§impl CreateVpcPeeringConnectionInput
impl CreateVpcPeeringConnectionInput
sourcepub fn builder() -> CreateVpcPeeringConnectionInputBuilder
pub fn builder() -> CreateVpcPeeringConnectionInputBuilder
Creates a new builder-style object to manufacture CreateVpcPeeringConnectionInput
.
Trait Implementations§
source§impl Clone for CreateVpcPeeringConnectionInput
impl Clone for CreateVpcPeeringConnectionInput
source§fn clone(&self) -> CreateVpcPeeringConnectionInput
fn clone(&self) -> CreateVpcPeeringConnectionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<CreateVpcPeeringConnectionInput> for CreateVpcPeeringConnectionInput
impl PartialEq<CreateVpcPeeringConnectionInput> for CreateVpcPeeringConnectionInput
source§fn eq(&self, other: &CreateVpcPeeringConnectionInput) -> bool
fn eq(&self, other: &CreateVpcPeeringConnectionInput) -> bool
self
and other
values to be equal, and is used
by ==
.