pub struct VpcnatgatewaysUpdateResponse {
pub vpc_nat_gateway: Option<VpcnatgatewaysUpdateResponseVpcNatGateway>,
}Expand description
VpcnatgatewaysUpdateResponse
JSON schema
{
"properties": {
"vpc_nat_gateway": {
"type": "object",
"required": [
"name",
"size"
],
"properties": {
"icmp_timeout_seconds": {
"description": "The ICMP timeout in seconds for the VPC NAT gateway.",
"examples": [
30
],
"type": "integer"
},
"name": {
"description": "The human-readable name of the VPC NAT gateway.",
"examples": [
"my-vpc-nat-gateway"
],
"type": "string"
},
"size": {
"description": "The size of the VPC NAT gateway.",
"examples": [
1
],
"type": "integer"
},
"tcp_timeout_seconds": {
"description": "The TCP timeout in seconds for the VPC NAT gateway.",
"examples": [
30
],
"type": "integer"
},
"udp_timeout_seconds": {
"description": "The UDP timeout in seconds for the VPC NAT gateway.",
"examples": [
30
],
"type": "integer"
},
"vpcs": {
"description": "An array of VPCs associated with the VPC NAT gateway.",
"type": "array",
"items": {
"type": "object",
"properties": {
"default_gateway": {
"description": "The classification of the NAT gateway as the default egress route for the VPC traffic.",
"examples": [
false
],
"type": "boolean"
},
"vpc_uuid": {
"description": "The unique identifier of the VPC to which the NAT gateway is attached.",
"examples": [
"0d3db13e-a604-4944-9827-7ec2642d32ac"
],
"type": "string"
}
}
}
}
}
}
}
}Fields§
§vpc_nat_gateway: Option<VpcnatgatewaysUpdateResponseVpcNatGateway>Trait Implementations§
Source§impl Clone for VpcnatgatewaysUpdateResponse
impl Clone for VpcnatgatewaysUpdateResponse
Source§fn clone(&self) -> VpcnatgatewaysUpdateResponse
fn clone(&self) -> VpcnatgatewaysUpdateResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VpcnatgatewaysUpdateResponse
impl Debug for VpcnatgatewaysUpdateResponse
Source§impl<'de> Deserialize<'de> for VpcnatgatewaysUpdateResponse
impl<'de> Deserialize<'de> for VpcnatgatewaysUpdateResponse
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
Source§impl From<&VpcnatgatewaysUpdateResponse> for VpcnatgatewaysUpdateResponse
impl From<&VpcnatgatewaysUpdateResponse> for VpcnatgatewaysUpdateResponse
Source§fn from(value: &VpcnatgatewaysUpdateResponse) -> Self
fn from(value: &VpcnatgatewaysUpdateResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VpcnatgatewaysUpdateResponse
impl RefUnwindSafe for VpcnatgatewaysUpdateResponse
impl Send for VpcnatgatewaysUpdateResponse
impl Sync for VpcnatgatewaysUpdateResponse
impl Unpin for VpcnatgatewaysUpdateResponse
impl UnsafeUnpin for VpcnatgatewaysUpdateResponse
impl UnwindSafe for VpcnatgatewaysUpdateResponse
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