interface AssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DevOpsAgent.AssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdevopsagent#AssociationReference |
Java | software.amazon.awscdk.interfaces.devopsagent.AssociationReference |
Python | aws_cdk.interfaces.aws_devopsagent.AssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_devopsagent » 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_devopsagent as interfaces_devopsagent } from 'aws-cdk-lib/interfaces';
const associationReference: interfaces_devopsagent.AssociationReference = {
agentSpaceId: 'agentSpaceId',
associationId: 'associationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The AgentSpaceId of the Association resource. |
| association | string | The AssociationId of the Association resource. |
agentSpaceId
Type:
string
The AgentSpaceId of the Association resource.
associationId
Type:
string
The AssociationId of the Association resource.

.NET
Go
Java
Python
TypeScript