Struct aws_sdk_outposts::model::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
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
sourceimpl 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
impl StructuralPartialEq for Outpost
Auto Trait Implementations
impl RefUnwindSafe for Outpost
impl Send for Outpost
impl Sync for Outpost
impl Unpin for Outpost
impl UnwindSafe for Outpost
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more