#[non_exhaustive]pub struct GetWorkerFleetOutput {
pub id: Option<String>,
pub arn: Option<String>,
pub name: Option<String>,
pub site: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub additional_fixed_properties: Option<String>,
/* private fields */
}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.id: Option<String>Filters access by the worker fleet’s identifier
arn: Option<String>Full ARN of the worker fleet.
name: Option<String>Human friendly name of the resource.
site: Option<String>Site ARN.
created_at: Option<DateTime>Timestamp at which the resource was created.
updated_at: Option<DateTime>Timestamp at which the resource was last updated.
additional_fixed_properties: Option<String>JSON blob containing additional fixed properties regarding the worker fleet
Implementations§
source§impl GetWorkerFleetOutput
impl GetWorkerFleetOutput
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
Timestamp at which the resource was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
Timestamp at which the resource was last updated.
sourcepub fn additional_fixed_properties(&self) -> Option<&str>
pub fn additional_fixed_properties(&self) -> Option<&str>
JSON blob containing additional fixed properties regarding the worker fleet
source§impl GetWorkerFleetOutput
impl GetWorkerFleetOutput
sourcepub fn builder() -> GetWorkerFleetOutputBuilder
pub fn builder() -> GetWorkerFleetOutputBuilder
Creates a new builder-style object to manufacture GetWorkerFleetOutput.
Trait Implementations§
source§impl Clone for GetWorkerFleetOutput
impl Clone for GetWorkerFleetOutput
source§fn clone(&self) -> GetWorkerFleetOutput
fn clone(&self) -> GetWorkerFleetOutput
Returns a copy 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 GetWorkerFleetOutput
impl Debug for GetWorkerFleetOutput
source§impl PartialEq<GetWorkerFleetOutput> for GetWorkerFleetOutput
impl PartialEq<GetWorkerFleetOutput> for GetWorkerFleetOutput
source§fn eq(&self, other: &GetWorkerFleetOutput) -> bool
fn eq(&self, other: &GetWorkerFleetOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetWorkerFleetOutput
impl RequestId for GetWorkerFleetOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetWorkerFleetOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetWorkerFleetOutput
impl Send for GetWorkerFleetOutput
impl Sync for GetWorkerFleetOutput
impl Unpin for GetWorkerFleetOutput
impl UnwindSafe for GetWorkerFleetOutput
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