interface AssociationParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnInstancePropsMixin.AssociationParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnInstancePropsMixin_AssociationParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnInstancePropsMixin.AssociationParameterProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnInstancePropsMixin.AssociationParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnInstancePropsMixin » AssociationParameterProperty |
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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const associationParameterProperty: ec2_mixins.CfnInstancePropsMixin.AssociationParameterProperty = {
key: 'key',
value: ['value'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The name of an input parameter that is in the associated SSM document. |
| value? | string[] | The value of an input parameter. |
key?
Type:
string
(optional)
The name of an input parameter that is in the associated SSM document.
value?
Type:
string[]
(optional)
The value of an input parameter.

.NET
Go
Java
Python
TypeScript