#[non_exhaustive]pub struct CreateFleetInput {
pub fleet_id: Option<String>,
pub description: Option<String>,
pub signal_catalog_arn: Option<String>,
pub tags: Option<Vec<Tag>>,
}
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.fleet_id: Option<String>
The unique ID of the fleet to create.
description: Option<String>
A brief description of the fleet to create.
signal_catalog_arn: Option<String>
The Amazon Resource Name (ARN) of a signal catalog.
Metadata that can be used to manage the fleet.
Implementations§
source§impl CreateFleetInput
impl CreateFleetInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A brief description of the fleet to create.
sourcepub fn signal_catalog_arn(&self) -> Option<&str>
pub fn signal_catalog_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a signal catalog.
Metadata that can be used to manage the fleet.
source§impl CreateFleetInput
impl CreateFleetInput
sourcepub fn builder() -> CreateFleetInputBuilder
pub fn builder() -> CreateFleetInputBuilder
Creates a new builder-style object to manufacture CreateFleetInput
.
Trait Implementations§
source§impl Clone for CreateFleetInput
impl Clone for CreateFleetInput
source§fn clone(&self) -> CreateFleetInput
fn clone(&self) -> CreateFleetInput
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 CreateFleetInput
impl Debug for CreateFleetInput
source§impl PartialEq<CreateFleetInput> for CreateFleetInput
impl PartialEq<CreateFleetInput> for CreateFleetInput
source§fn eq(&self, other: &CreateFleetInput) -> bool
fn eq(&self, other: &CreateFleetInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateFleetInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateFleetInput
impl Send for CreateFleetInput
impl Sync for CreateFleetInput
impl Unpin for CreateFleetInput
impl UnwindSafe for CreateFleetInput
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