interface AssociationParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnInstance.AssociationParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnInstance_AssociationParameterProperty |
Java | software.amazon.awscdk.services.ec2.CfnInstance.AssociationParameterProperty |
Python | aws_cdk.aws_ec2.CfnInstance.AssociationParameterProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnInstance » 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-lib';
const associationParameterProperty: ec2.CfnInstance.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
The name of an input parameter that is in the associated SSM document.
value
Type:
string[]
The value of an input parameter.

.NET
Go
Java
Python
TypeScript