Interface CfnScalingPlan.ApplicationSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScalingPlan.ApplicationSourceProperty.Jsii$Proxy
Enclosing class:
CfnScalingPlan

@Stability(Stable) public static interface CfnScalingPlan.ApplicationSourceProperty extends software.amazon.jsii.JsiiSerializable
ApplicationSource is a property of ScalingPlan that specifies the application source to use with a scaling plan. You can create one scaling plan per application source.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.autoscalingplans.*;
 ApplicationSourceProperty applicationSourceProperty = ApplicationSourceProperty.builder()
         .cloudFormationStackArn("cloudFormationStackArn")
         .tagFilters(List.of(TagFilterProperty.builder()
                 .key("key")
                 // the properties below are optional
                 .values(List.of("values"))
                 .build()))
         .build();
 

See Also: