Struct cfn::aws::ecs::ServiceProperties [] [src]

pub struct ServiceProperties {
    pub cluster: Option<Value<String>>,
    pub deployment_configuration: Option<Value<DeploymentConfiguration>>,
    pub desired_count: Option<Value<u32>>,
    pub health_check_grace_period_seconds: Option<Value<u32>>,
    pub launch_type: Option<Value<String>>,
    pub load_balancers: Option<ValueList<LoadBalancer>>,
    pub network_configuration: Option<Value<NetworkConfiguration>>,
    pub placement_constraints: Option<ValueList<PlacementConstraint>>,
    pub placement_strategies: Option<ValueList<PlacementStrategy>>,
    pub platform_version: Option<Value<String>>,
    pub role: Option<Value<String>>,
    pub service_name: Option<Value<String>>,
    pub task_definition: Value<String>,
}

Properties for the Service resource.

Fields

Property Cluster.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DeploymentConfiguration.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property DesiredCount.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property HealthCheckGracePeriodSeconds.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property LaunchType.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property LoadBalancers.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property NetworkConfiguration.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property PlacementConstraints.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property PlacementStrategies.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property PlatformVersion.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Role.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property ServiceName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property TaskDefinition.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for ServiceProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for ServiceProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for ServiceProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for ServiceProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ServiceProperties> for Service
[src]

[src]

Performs the conversion.

Auto Trait Implementations