pub struct VpcPeeringCreateRequest {
pub provider: Option<String>,
pub command_type: Option<String>,
pub vpc_id: Option<String>,
pub aws_region: Option<String>,
pub aws_account_id: Option<String>,
pub vpc_cidr: Option<String>,
pub vpc_cidrs: Option<Vec<String>>,
pub gcp_project_id: Option<String>,
pub network_name: Option<String>,
}Expand description
VPC peering creation request
Fields§
§provider: Option<String>§command_type: Option<String>§vpc_id: Option<String>AWS VPC ID
aws_region: Option<String>AWS region
aws_account_id: Option<String>AWS account ID
vpc_cidr: Option<String>VPC CIDR
vpc_cidrs: Option<Vec<String>>List of VPC CIDRs
gcp_project_id: Option<String>GCP project ID
network_name: Option<String>GCP network name
Trait Implementations§
Source§impl Clone for VpcPeeringCreateRequest
impl Clone for VpcPeeringCreateRequest
Source§fn clone(&self) -> VpcPeeringCreateRequest
fn clone(&self) -> VpcPeeringCreateRequest
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 Debug for VpcPeeringCreateRequest
impl Debug for VpcPeeringCreateRequest
Source§impl Default for VpcPeeringCreateRequest
impl Default for VpcPeeringCreateRequest
Source§fn default() -> VpcPeeringCreateRequest
fn default() -> VpcPeeringCreateRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VpcPeeringCreateRequest
impl<'de> Deserialize<'de> for VpcPeeringCreateRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for VpcPeeringCreateRequest
impl RefUnwindSafe for VpcPeeringCreateRequest
impl Send for VpcPeeringCreateRequest
impl Sync for VpcPeeringCreateRequest
impl Unpin for VpcPeeringCreateRequest
impl UnwindSafe for VpcPeeringCreateRequest
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