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

pub struct ScalingPolicyProperties {
    pub policy_name: Value<String>,
    pub policy_type: Value<String>,
    pub resource_id: Option<Value<String>>,
    pub scalable_dimension: Option<Value<String>>,
    pub scaling_target_id: Option<Value<String>>,
    pub service_namespace: Option<Value<String>>,
    pub step_scaling_policy_configuration: Option<Value<StepScalingPolicyConfiguration>>,
    pub target_tracking_scaling_policy_configuration: Option<Value<TargetTrackingScalingPolicyConfiguration>>,
}

Properties for the ScalingPolicy resource.

Fields

Property PolicyName.

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

Property PolicyType.

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 ScalableDimension.

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

Property ScalingTargetId.

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

Property ServiceNamespace.

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

Property StepScalingPolicyConfiguration.

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

Property TargetTrackingScalingPolicyConfiguration.

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

Trait Implementations

impl Debug for ScalingPolicyProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ScalingPolicyProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ScalingPolicyProperties> for ScalingPolicy
[src]

[src]

Performs the conversion.

Auto Trait Implementations