#[non_exhaustive]pub struct CreateWorkerFleetOutput {
pub arn: Option<String>,
pub id: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
/* 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.arn: Option<String>Full ARN of the worker fleet.
id: Option<String>Filters access by the worker fleet’s identifier
created_at: Option<DateTime>Timestamp at which the resource was created.
updated_at: Option<DateTime>Timestamp at which the resource was last updated.
Implementations§
source§impl CreateWorkerFleetOutput
impl CreateWorkerFleetOutput
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.
source§impl CreateWorkerFleetOutput
impl CreateWorkerFleetOutput
sourcepub fn builder() -> CreateWorkerFleetOutputBuilder
pub fn builder() -> CreateWorkerFleetOutputBuilder
Creates a new builder-style object to manufacture CreateWorkerFleetOutput.
Trait Implementations§
source§impl Clone for CreateWorkerFleetOutput
impl Clone for CreateWorkerFleetOutput
source§fn clone(&self) -> CreateWorkerFleetOutput
fn clone(&self) -> CreateWorkerFleetOutput
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 CreateWorkerFleetOutput
impl Debug for CreateWorkerFleetOutput
source§impl PartialEq<CreateWorkerFleetOutput> for CreateWorkerFleetOutput
impl PartialEq<CreateWorkerFleetOutput> for CreateWorkerFleetOutput
source§fn eq(&self, other: &CreateWorkerFleetOutput) -> bool
fn eq(&self, other: &CreateWorkerFleetOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateWorkerFleetOutput
impl RequestId for CreateWorkerFleetOutput
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 CreateWorkerFleetOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateWorkerFleetOutput
impl Send for CreateWorkerFleetOutput
impl Sync for CreateWorkerFleetOutput
impl Unpin for CreateWorkerFleetOutput
impl UnwindSafe for CreateWorkerFleetOutput
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