Interface CfnInstance.AssociationParameterProperty

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

@Stability(Stable) public static interface CfnInstance.AssociationParameterProperty extends software.amazon.jsii.JsiiSerializable
Specifies input parameter values for an SSM document in AWS Systems Manager .

AssociationParameter is a property of the Amazon EC2 Instance SsmAssociation property.

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.ec2.*;
 AssociationParameterProperty associationParameterProperty = AssociationParameterProperty.builder()
         .key("key")
         .value(List.of("value"))
         .build();
 

See Also: