[−][src]Struct rusoto_ecs::CreateTaskSetRequest
Fields
client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 32 ASCII characters are allowed.
cluster: String
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the service to create the task set in.
external_id: Option<String>
An optional non-unique tag that identifies this task set in external systems. If the task set is associated with a service discovery registry, the tasks in this task set will have the ECS_TASK_SET_EXTERNAL_ID
AWS Cloud Map attribute set to the provided value.
launch_type: Option<String>
The launch type that new tasks in the task set will use. For more information, see Amazon ECS Launch Types in the Amazon Elastic Container Service Developer Guide.
load_balancers: Option<Vec<LoadBalancer>>
A load balancer object representing the load balancer to use with the task set. The supported load balancer types are either an Application Load Balancer or a Network Load Balancer.
network_configuration: Option<NetworkConfiguration>
platform_version: Option<String>
The platform version that the tasks in the task set should use. A platform version is specified only for tasks using the Fargate launch type. If one isn't specified, the LATEST
platform version is used by default.
scale: Option<Scale>
service: String
The short name or full Amazon Resource Name (ARN) of the service to create the task set in.
service_registries: Option<Vec<ServiceRegistry>>
The details of the service discovery registries to assign to this task set. For more information, see Service Discovery.
task_definition: String
The task definition for the tasks in the task set to use.
Trait Implementations
impl PartialEq<CreateTaskSetRequest> for CreateTaskSetRequest
[src]
fn eq(&self, other: &CreateTaskSetRequest) -> bool
[src]
fn ne(&self, other: &CreateTaskSetRequest) -> bool
[src]
impl Default for CreateTaskSetRequest
[src]
fn default() -> CreateTaskSetRequest
[src]
impl Clone for CreateTaskSetRequest
[src]
fn clone(&self) -> CreateTaskSetRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateTaskSetRequest
[src]
impl Serialize for CreateTaskSetRequest
[src]
Auto Trait Implementations
impl Send for CreateTaskSetRequest
impl Sync for CreateTaskSetRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self