pub struct TransitGateway {
pub creation_time: Option<String>,
pub description: Option<String>,
pub options: Option<TransitGatewayOptions>,
pub owner_id: Option<String>,
pub state: Option<String>,
pub tags: Option<Vec<Tag>>,
pub transit_gateway_arn: Option<String>,
pub transit_gateway_id: Option<String>,
}Expand description
Describes a transit gateway.
Fields§
§creation_time: Option<String>The creation time.
description: Option<String>The description of the transit gateway.
options: Option<TransitGatewayOptions>The transit gateway options.
owner_id: Option<String>The ID of the AWS account ID that owns the transit gateway.
state: Option<String>The state of the transit gateway.
The tags for the transit gateway.
transit_gateway_arn: Option<String>The Amazon Resource Name (ARN) of the transit gateway.
transit_gateway_id: Option<String>The ID of the transit gateway.
Trait Implementations§
Source§impl Clone for TransitGateway
impl Clone for TransitGateway
Source§fn clone(&self) -> TransitGateway
fn clone(&self) -> TransitGateway
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 TransitGateway
impl Debug for TransitGateway
Source§impl Default for TransitGateway
impl Default for TransitGateway
Source§fn default() -> TransitGateway
fn default() -> TransitGateway
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransitGateway
impl PartialEq for TransitGateway
impl StructuralPartialEq for TransitGateway
Auto Trait Implementations§
impl Freeze for TransitGateway
impl RefUnwindSafe for TransitGateway
impl Send for TransitGateway
impl Sync for TransitGateway
impl Unpin for TransitGateway
impl UnwindSafe for TransitGateway
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