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 SsmAssociation property type.
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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnInstance.AssociationParameterPropertystatic final classAn 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.- See Also:
-
getValue
The value of an input parameter.- See Also:
-
builder
-