interface AssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SSM.AssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsssm#AssociationReference |
Java | software.amazon.awscdk.interfaces.ssm.AssociationReference |
Python | aws_cdk.interfaces.aws_ssm.AssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_ssm » AssociationReference |
A reference to a Association resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as interfaces_aws_ssm } from 'aws-cdk-lib/interfaces';
const associationReference: interfaces_aws_ssm.AssociationReference = {
associationId: 'associationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | string | The AssociationId of the Association resource. |
associationId
Type:
string
The AssociationId of the Association resource.

.NET
Go
Java
Python
TypeScript