pub struct VpcClassicLink {
pub classic_link_enabled: Option<bool>,
pub tags: Option<Vec<Tag>>,
pub vpc_id: Option<String>,
}Expand description
Describes whether a VPC is enabled for ClassicLink.
Fields§
§classic_link_enabled: Option<bool>Indicates whether the VPC is enabled for ClassicLink.
Any tags assigned to the VPC.
vpc_id: Option<String>The ID of the VPC.
Trait Implementations§
Source§impl Clone for VpcClassicLink
impl Clone for VpcClassicLink
Source§fn clone(&self) -> VpcClassicLink
fn clone(&self) -> VpcClassicLink
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 VpcClassicLink
impl Debug for VpcClassicLink
Source§impl Default for VpcClassicLink
impl Default for VpcClassicLink
Source§fn default() -> VpcClassicLink
fn default() -> VpcClassicLink
Returns the “default value” for a type. Read more
Source§impl PartialEq for VpcClassicLink
impl PartialEq for VpcClassicLink
impl StructuralPartialEq for VpcClassicLink
Auto Trait Implementations§
impl Freeze for VpcClassicLink
impl RefUnwindSafe for VpcClassicLink
impl Send for VpcClassicLink
impl Sync for VpcClassicLink
impl Unpin for VpcClassicLink
impl UnwindSafe for VpcClassicLink
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