interface ExtensionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.AppConfig.ExtensionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsappconfig#ExtensionReference |
Java | software.amazon.awscdk.interfaces.appconfig.ExtensionReference |
Python | aws_cdk.interfaces.aws_appconfig.ExtensionReference |
TypeScript | aws-cdk-lib » interfaces » aws_appconfig » ExtensionReference |
A reference to a Extension 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 interfaces_aws_appconfig } from 'aws-cdk-lib/interfaces';
const extensionReference: interfaces_aws_appconfig.ExtensionReference = {
extensionArn: 'extensionArn',
extensionId: 'extensionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| extension | string | The ARN of the Extension resource. |
| extension | string | The Id of the Extension resource. |
extensionArn
Type:
string
The ARN of the Extension resource.
extensionId
Type:
string
The Id of the Extension resource.

.NET
Go
Java
Python
TypeScript