Interface CfnInstancePropsMixin.SsmAssociationProperty

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

@Stability(Stable) public static interface CfnInstancePropsMixin.SsmAssociationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the SSM document and parameter values in AWS Systems Manager to associate with an instance.

SsmAssociations is a property of the AWS::EC2::Instance resource.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
 SsmAssociationProperty ssmAssociationProperty = SsmAssociationProperty.builder()
         .associationParameters(List.of(AssociationParameterProperty.builder()
                 .key("key")
                 .value(List.of("value"))
                 .build()))
         .documentName("documentName")
         .build();
 

See Also: