Struct aws_sdk_worklink::operation::create_fleet::CreateFleetInput
source · #[non_exhaustive]pub struct CreateFleetInput {
pub fleet_name: Option<String>,
pub display_name: Option<String>,
pub optimize_for_end_user_location: Option<bool>,
pub tags: Option<HashMap<String, String>>,
}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_name: Option<String>A unique name for the fleet.
display_name: Option<String>The fleet 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.
The tags to add to the resource. A tag is a key-value pair.
Implementations§
source§impl CreateFleetInput
impl CreateFleetInput
sourcepub fn fleet_name(&self) -> Option<&str>
pub fn fleet_name(&self) -> Option<&str>
A unique name for the fleet.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The fleet 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.
The tags to add to the resource. A tag is a key-value pair.
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 for CreateFleetInput
impl PartialEq 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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.