interface ExtensionAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.ExtensionAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#ExtensionAssociationReference |
Java | software.amazon.awscdk.services.appconfig.ExtensionAssociationReference |
Python | aws_cdk.aws_appconfig.ExtensionAssociationReference |
TypeScript | aws-cdk-lib » aws_appconfig » ExtensionAssociationReference |
A reference to a ExtensionAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appconfig as appconfig } from 'aws-cdk-lib';
const extensionAssociationReference: appconfig.ExtensionAssociationReference = {
extensionAssociationArn: 'extensionAssociationArn',
extensionAssociationId: 'extensionAssociationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| extension | string | The ARN of the ExtensionAssociation resource. |
| extension | string | The Id of the ExtensionAssociation resource. |
extensionAssociationArn
Type:
string
The ARN of the ExtensionAssociation resource.
extensionAssociationId
Type:
string
The Id of the ExtensionAssociation resource.

.NET
Go
Java
Python
TypeScript