pub struct AwsVpcNetworkHeartbeatData {
pub availability_zones: Vec<String>,
pub cidr_block: Option<String>,
pub internet_gateway_id: Option<String>,
pub is_byo_vpc: bool,
pub nat_gateway_id: Option<String>,
pub private_subnet_ids: Vec<String>,
pub public_subnet_ids: Vec<String>,
pub route_table_count: i32,
pub security_group_id: Option<String>,
pub status: NetworkHeartbeatStatus,
pub vpc_id: Option<String>,
pub vpc_state: Option<String>,
}Expand description
AwsVpcNetworkHeartbeatData
JSON schema
{
"type": "object",
"required": [
"availabilityZones",
"isByoVpc",
"privateSubnetIds",
"publicSubnetIds",
"routeTableCount",
"status"
],
"properties": {
"availabilityZones": {
"type": "array",
"items": {
"type": "string"
}
},
"cidrBlock": {
"type": [
"string",
"null"
]
},
"internetGatewayId": {
"type": [
"string",
"null"
]
},
"isByoVpc": {
"type": "boolean"
},
"natGatewayId": {
"type": [
"string",
"null"
]
},
"privateSubnetIds": {
"type": "array",
"items": {
"type": "string"
}
},
"publicSubnetIds": {
"type": "array",
"items": {
"type": "string"
}
},
"routeTableCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"securityGroupId": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/NetworkHeartbeatStatus"
},
"vpcId": {
"type": [
"string",
"null"
]
},
"vpcState": {
"type": [
"string",
"null"
]
}
}
}Fields§
§availability_zones: Vec<String>§cidr_block: Option<String>§internet_gateway_id: Option<String>§is_byo_vpc: bool§nat_gateway_id: Option<String>§private_subnet_ids: Vec<String>§public_subnet_ids: Vec<String>§route_table_count: i32§security_group_id: Option<String>§status: NetworkHeartbeatStatus§vpc_id: Option<String>§vpc_state: Option<String>Implementations§
Source§impl AwsVpcNetworkHeartbeatData
impl AwsVpcNetworkHeartbeatData
pub fn builder() -> AwsVpcNetworkHeartbeatData
Trait Implementations§
Source§impl Clone for AwsVpcNetworkHeartbeatData
impl Clone for AwsVpcNetworkHeartbeatData
Source§fn clone(&self) -> AwsVpcNetworkHeartbeatData
fn clone(&self) -> AwsVpcNetworkHeartbeatData
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 AwsVpcNetworkHeartbeatData
impl Debug for AwsVpcNetworkHeartbeatData
Source§impl<'de> Deserialize<'de> for AwsVpcNetworkHeartbeatData
impl<'de> Deserialize<'de> for AwsVpcNetworkHeartbeatData
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<&AwsVpcNetworkHeartbeatData> for AwsVpcNetworkHeartbeatData
impl From<&AwsVpcNetworkHeartbeatData> for AwsVpcNetworkHeartbeatData
Source§fn from(value: &AwsVpcNetworkHeartbeatData) -> Self
fn from(value: &AwsVpcNetworkHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AwsVpcNetworkHeartbeatData> for AwsVpcNetworkHeartbeatData
impl From<AwsVpcNetworkHeartbeatData> for AwsVpcNetworkHeartbeatData
Source§fn from(value: AwsVpcNetworkHeartbeatData) -> Self
fn from(value: AwsVpcNetworkHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AwsVpcNetworkHeartbeatData> for AwsVpcNetworkHeartbeatData
impl TryFrom<AwsVpcNetworkHeartbeatData> for AwsVpcNetworkHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AwsVpcNetworkHeartbeatData) -> Result<Self, ConversionError>
fn try_from(value: AwsVpcNetworkHeartbeatData) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AwsVpcNetworkHeartbeatData
impl RefUnwindSafe for AwsVpcNetworkHeartbeatData
impl Send for AwsVpcNetworkHeartbeatData
impl Sync for AwsVpcNetworkHeartbeatData
impl Unpin for AwsVpcNetworkHeartbeatData
impl UnsafeUnpin for AwsVpcNetworkHeartbeatData
impl UnwindSafe for AwsVpcNetworkHeartbeatData
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