Interface CfnAssociation.TargetProperty

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

@Stability(Stable) public static interface CfnAssociation.TargetProperty extends software.amazon.jsii.JsiiSerializable
Target is a property of the AWS::SSM::Association resource that specifies the targets for an SSM document in Systems Manager . You can target all instances in an AWS account by specifying the InstanceIds key with a value of * . To view a JSON and a YAML example that targets all instances, see the example "Create an association for all managed instances in an AWS account " later in this page.

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.ssm.*;
 TargetProperty targetProperty = TargetProperty.builder()
         .key("key")
         .values(List.of("values"))
         .build();
 

See Also: