interface AssociationParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnInstancePropsMixin.AssociationParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnInstancePropsMixin_AssociationParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnInstancePropsMixin.AssociationParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnInstancePropsMixin.AssociationParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const associationParameterProperty: ec2.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