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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstance.AssociationParameterProperty
static final class
An implementation forCfnInstance.AssociationParameterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name of an input parameter that is in the associated SSM document. -
getValue
The value of an input parameter. -
builder
-