pub struct AppSpecVpc {
pub egress_ips: Vec<TheEgressIpsAssociatedWithTheVpcItem>,
pub id: Option<String>,
}Expand description
AppSpecVpc
JSON schema
{
"readOnly": true,
"type": "object",
"properties": {
"egress_ips": {
"title": "The egress ips associated with the VPC.",
"type": "array",
"items": {
"type": "object",
"properties": {
"ip": {
"examples": [
"10.0.0.1"
],
"type": "string"
}
}
}
},
"id": {
"title": "The ID of the VPC.",
"examples": [
"c22d8f48-4bc4-49f5-8ca0-58e7164427ac"
],
"type": "string"
}
}
}Fields§
§egress_ips: Vec<TheEgressIpsAssociatedWithTheVpcItem>§id: Option<String>Trait Implementations§
Source§impl Clone for AppSpecVpc
impl Clone for AppSpecVpc
Source§fn clone(&self) -> AppSpecVpc
fn clone(&self) -> AppSpecVpc
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 AppSpecVpc
impl Debug for AppSpecVpc
Source§impl Default for AppSpecVpc
impl Default for AppSpecVpc
Source§impl<'de> Deserialize<'de> for AppSpecVpc
impl<'de> Deserialize<'de> for AppSpecVpc
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<&AppSpecVpc> for AppSpecVpc
impl From<&AppSpecVpc> for AppSpecVpc
Source§fn from(value: &AppSpecVpc) -> Self
fn from(value: &AppSpecVpc) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppSpecVpc
impl RefUnwindSafe for AppSpecVpc
impl Send for AppSpecVpc
impl Sync for AppSpecVpc
impl Unpin for AppSpecVpc
impl UnsafeUnpin for AppSpecVpc
impl UnwindSafe for AppSpecVpc
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