Struct cfn::aws::applicationautoscaling::ScalableTargetProperties [] [src]

pub struct ScalableTargetProperties {
    pub max_capacity: Value<u32>,
    pub min_capacity: Value<u32>,
    pub resource_id: Value<String>,
    pub role_arn: Value<String>,
    pub scalable_dimension: Value<String>,
    pub scheduled_actions: Option<ValueList<ScheduledAction>>,
    pub service_namespace: Value<String>,
}

Properties for the ScalableTarget resource.

Fields

Property MaxCapacity.

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

Property MinCapacity.

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

Property ResourceId.

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

Property RoleARN.

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

Property ScalableDimension.

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

Property ScheduledActions.

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

Property ServiceNamespace.

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

Trait Implementations

impl Debug for ScalableTargetProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ScalableTargetProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ScalableTargetProperties> for ScalableTarget
[src]

[src]

Performs the conversion.

Auto Trait Implementations