#[non_exhaustive]pub struct DescribeFleetMetadataOutput {
pub created_time: Option<DateTime>,
pub last_updated_time: Option<DateTime>,
pub fleet_name: Option<String>,
pub display_name: Option<String>,
pub optimize_for_end_user_location: Option<bool>,
pub company_code: Option<String>,
pub fleet_status: Option<FleetStatus>,
pub tags: Option<HashMap<String, String>>,
}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.created_time: Option<DateTime>The time that the fleet was created.
last_updated_time: Option<DateTime>The time that the fleet was last updated.
fleet_name: Option<String>The name of the fleet.
display_name: Option<String>The name to display.
optimize_for_end_user_location: Option<bool>The option to optimize for better performance by routing traffic through the closest AWS Region to users, which may be outside of your home Region.
company_code: Option<String>The identifier used by users to sign in to the Amazon WorkLink app.
fleet_status: Option<FleetStatus>The current state of the fleet.
The tags attached to the resource. A tag is a key-value pair.
Implementations
sourceimpl DescribeFleetMetadataOutput
impl DescribeFleetMetadataOutput
sourcepub fn created_time(&self) -> Option<&DateTime>
pub fn created_time(&self) -> Option<&DateTime>
The time that the fleet was created.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The time that the fleet was last updated.
sourcepub fn fleet_name(&self) -> Option<&str>
pub fn fleet_name(&self) -> Option<&str>
The name of the fleet.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The name to display.
sourcepub fn optimize_for_end_user_location(&self) -> Option<bool>
pub fn optimize_for_end_user_location(&self) -> Option<bool>
The option to optimize for better performance by routing traffic through the closest AWS Region to users, which may be outside of your home Region.
sourcepub fn company_code(&self) -> Option<&str>
pub fn company_code(&self) -> Option<&str>
The identifier used by users to sign in to the Amazon WorkLink app.
sourcepub fn fleet_status(&self) -> Option<&FleetStatus>
pub fn fleet_status(&self) -> Option<&FleetStatus>
The current state of the fleet.
The tags attached to the resource. A tag is a key-value pair.
sourceimpl DescribeFleetMetadataOutput
impl DescribeFleetMetadataOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeFleetMetadataOutput
Trait Implementations
sourceimpl Clone for DescribeFleetMetadataOutput
impl Clone for DescribeFleetMetadataOutput
sourcefn clone(&self) -> DescribeFleetMetadataOutput
fn clone(&self) -> DescribeFleetMetadataOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescribeFleetMetadataOutput
impl Debug for DescribeFleetMetadataOutput
sourceimpl PartialEq<DescribeFleetMetadataOutput> for DescribeFleetMetadataOutput
impl PartialEq<DescribeFleetMetadataOutput> for DescribeFleetMetadataOutput
sourcefn eq(&self, other: &DescribeFleetMetadataOutput) -> bool
fn eq(&self, other: &DescribeFleetMetadataOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DescribeFleetMetadataOutput) -> bool
fn ne(&self, other: &DescribeFleetMetadataOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for DescribeFleetMetadataOutput
Auto Trait Implementations
impl RefUnwindSafe for DescribeFleetMetadataOutput
impl Send for DescribeFleetMetadataOutput
impl Sync for DescribeFleetMetadataOutput
impl Unpin for DescribeFleetMetadataOutput
impl UnwindSafe for DescribeFleetMetadataOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
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> 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