[][src]Struct rusoto_ecs::CreateTaskSetRequest

pub struct CreateTaskSetRequest {
    pub client_token: Option<String>,
    pub cluster: String,
    pub external_id: Option<String>,
    pub launch_type: Option<String>,
    pub load_balancers: Option<Vec<LoadBalancer>>,
    pub network_configuration: Option<NetworkConfiguration>,
    pub platform_version: Option<String>,
    pub scale: Option<Scale>,
    pub service: String,
    pub service_registries: Option<Vec<ServiceRegistry>>,
    pub task_definition: String,
}

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]

impl Default for CreateTaskSetRequest[src]

impl Clone for 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]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self