Struct aws_sdk_deadline::operation::create_fleet::CreateFleetInput
source · #[non_exhaustive]pub struct CreateFleetInput {
pub client_token: Option<String>,
pub farm_id: Option<String>,
pub display_name: Option<String>,
pub description: Option<String>,
pub role_arn: Option<String>,
pub min_worker_count: Option<i32>,
pub max_worker_count: Option<i32>,
pub configuration: Option<FleetConfiguration>,
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.client_token: Option<String>The unique token which the server uses to recognize retries of the same request.
farm_id: Option<String>The farm ID of the farm to connect to the fleet.
display_name: Option<String>The display name of the fleet.
description: Option<String>The description of the fleet.
role_arn: Option<String>The IAM role ARN for the role that the fleet's workers will use.
min_worker_count: Option<i32>The minimum number of workers for the fleet.
max_worker_count: Option<i32>The maximum number of workers for the fleet.
configuration: Option<FleetConfiguration>The configuration settings for the fleet. Customer managed fleets are self-managed. Service managed Amazon EC2 fleets are managed by Deadline Cloud.
Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
Implementations§
source§impl CreateFleetInput
impl CreateFleetInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The unique token which the server uses to recognize retries of the same request.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The display name of the fleet.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the fleet.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The IAM role ARN for the role that the fleet's workers will use.
sourcepub fn min_worker_count(&self) -> Option<i32>
pub fn min_worker_count(&self) -> Option<i32>
The minimum number of workers for the fleet.
sourcepub fn max_worker_count(&self) -> Option<i32>
pub fn max_worker_count(&self) -> Option<i32>
The maximum number of workers for the fleet.
sourcepub fn configuration(&self) -> Option<&FleetConfiguration>
pub fn configuration(&self) -> Option<&FleetConfiguration>
The configuration settings for the fleet. Customer managed fleets are self-managed. Service managed Amazon EC2 fleets are managed by Deadline Cloud.
Each tag consists of a tag key and a tag value. Tag keys and values are both required, but tag values can be empty strings.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateFleetInput
Auto Trait Implementations§
impl Freeze for CreateFleetInput
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more