Interface CfnBudgetsAction.SsmActionDefinitionProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnBudgetsAction.SsmActionDefinitionProperty.Jsii$Proxy
- Enclosing class:
- CfnBudgetsAction
@Stability(Stable)
public static interface CfnBudgetsAction.SsmActionDefinitionProperty
extends software.amazon.jsii.JsiiSerializable
The Amazon EC2 Systems Manager ( SSM ) action definition details.
 
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.budgets.*;
 SsmActionDefinitionProperty ssmActionDefinitionProperty = SsmActionDefinitionProperty.builder()
         .instanceIds(List.of("instanceIds"))
         .region("region")
         .subtype("subtype")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBudgetsAction.SsmActionDefinitionPropertystatic final classAn implementation forCfnBudgetsAction.SsmActionDefinitionProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()The EC2 and RDS instance IDs.The Region to run the ( SSM ) document.The action subType.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getInstanceIdsThe EC2 and RDS instance IDs.
- 
getRegionThe Region to run the ( SSM ) document.
- 
getSubtypeThe action subType.
- 
builder
 
-