aws-cdk-lib.aws_ec2.CfnInstance.AssociationParameterProperty

interface AssociationParameterProperty

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnInstance.AssociationParameterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnInstance_AssociationParameterProperty
Javasoftware.amazon.awscdk.services.ec2.CfnInstance.AssociationParameterProperty
Pythonaws_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 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const associationParameterProperty: ec2.CfnInstance.AssociationParameterProperty = {
  key: 'key',
  value: ['value'],
};

Properties

NameTypeDescription
keystringThe name of an input parameter that is in the associated SSM document.
valuestring[]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.