pub struct CreateVpcPeeringConnectionRequest {
pub dry_run: Option<bool>,
pub peer_owner_id: Option<String>,
pub peer_region: Option<String>,
pub peer_vpc_id: Option<String>,
pub vpc_id: Option<String>,
}Fields§
§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 AWS account ID of the owner of the accepter VPC.
Default: Your AWS account ID
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.
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.
Trait Implementations§
Source§impl Clone for CreateVpcPeeringConnectionRequest
impl Clone for CreateVpcPeeringConnectionRequest
Source§fn clone(&self) -> CreateVpcPeeringConnectionRequest
fn clone(&self) -> CreateVpcPeeringConnectionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CreateVpcPeeringConnectionRequest
impl Default for CreateVpcPeeringConnectionRequest
Source§fn default() -> CreateVpcPeeringConnectionRequest
fn default() -> CreateVpcPeeringConnectionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateVpcPeeringConnectionRequest
impl PartialEq for CreateVpcPeeringConnectionRequest
Source§fn eq(&self, other: &CreateVpcPeeringConnectionRequest) -> bool
fn eq(&self, other: &CreateVpcPeeringConnectionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateVpcPeeringConnectionRequest
Auto Trait Implementations§
impl Freeze for CreateVpcPeeringConnectionRequest
impl RefUnwindSafe for CreateVpcPeeringConnectionRequest
impl Send for CreateVpcPeeringConnectionRequest
impl Sync for CreateVpcPeeringConnectionRequest
impl Unpin for CreateVpcPeeringConnectionRequest
impl UnwindSafe for CreateVpcPeeringConnectionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more