Struct aws_sdk_outposts::types::Outpost
source · #[non_exhaustive]pub struct Outpost {
pub outpost_id: Option<String>,
pub owner_id: Option<String>,
pub outpost_arn: Option<String>,
pub site_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub life_cycle_status: Option<String>,
pub availability_zone: Option<String>,
pub availability_zone_id: Option<String>,
pub tags: Option<HashMap<String, String>>,
pub site_arn: Option<String>,
pub supported_hardware_type: Option<SupportedHardwareType>,
}
Expand description
Information about an Outpost.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.outpost_id: Option<String>
The ID of the Outpost.
owner_id: Option<String>
The Amazon Web Services account ID of the Outpost owner.
outpost_arn: Option<String>
The Amazon Resource Name (ARN) of the Outpost.
site_id: Option<String>
The ID of the site.
name: Option<String>
The name of the Outpost.
description: Option<String>
The description of the Outpost.
life_cycle_status: Option<String>
The life cycle status.
availability_zone: Option<String>
The Availability Zone.
availability_zone_id: Option<String>
The ID of the Availability Zone.
The Outpost tags.
site_arn: Option<String>
The Amazon Resource Name (ARN) of the site.
supported_hardware_type: Option<SupportedHardwareType>
The hardware type.
Implementations§
source§impl Outpost
impl Outpost
sourcepub fn outpost_id(&self) -> Option<&str>
pub fn outpost_id(&self) -> Option<&str>
The ID of the Outpost.
sourcepub fn owner_id(&self) -> Option<&str>
pub fn owner_id(&self) -> Option<&str>
The Amazon Web Services account ID of the Outpost owner.
sourcepub fn outpost_arn(&self) -> Option<&str>
pub fn outpost_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Outpost.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the Outpost.
sourcepub fn life_cycle_status(&self) -> Option<&str>
pub fn life_cycle_status(&self) -> Option<&str>
The life cycle status.
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The Availability Zone.
sourcepub fn availability_zone_id(&self) -> Option<&str>
pub fn availability_zone_id(&self) -> Option<&str>
The ID of the Availability Zone.
The Outpost tags.
sourcepub fn supported_hardware_type(&self) -> Option<&SupportedHardwareType>
pub fn supported_hardware_type(&self) -> Option<&SupportedHardwareType>
The hardware type.
Trait Implementations§
source§impl PartialEq for Outpost
impl PartialEq for Outpost
impl StructuralPartialEq for Outpost
Auto Trait Implementations§
impl Freeze for Outpost
impl RefUnwindSafe for Outpost
impl Send for Outpost
impl Sync for Outpost
impl Unpin for Outpost
impl UnwindSafe for Outpost
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.