interface ExtensionAttributes
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppConfig.ExtensionAttributes |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#ExtensionAttributes |
Java | software.amazon.awscdk.services.appconfig.ExtensionAttributes |
Python | aws_cdk.aws_appconfig.ExtensionAttributes |
TypeScript (source) | aws-cdk-lib » aws_appconfig » ExtensionAttributes |
Attributes of an existing AWS AppConfig extension to import.
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';
declare const action: appconfig.Action;
const extensionAttributes: appconfig.ExtensionAttributes = {
extensionId: 'extensionId',
extensionVersionNumber: 123,
// the properties below are optional
actions: [action],
description: 'description',
extensionArn: 'extensionArn',
name: 'name',
};
Properties
Name | Type | Description |
---|---|---|
extension | string | The ID of the extension. |
extension | number | The version number of the extension. |
actions? | Action [] | The actions of the extension. |
description? | string | The description of the extension. |
extension | string | The Amazon Resource Name (ARN) of the extension. |
name? | string | The name of the extension. |
extensionId
Type:
string
The ID of the extension.
extensionVersionNumber
Type:
number
The version number of the extension.
actions?
Type:
Action
[]
(optional, default: None.)
The actions of the extension.
description?
Type:
string
(optional, default: None.)
The description of the extension.
extensionArn?
Type:
string
(optional, default: The extension ARN is generated.)
The Amazon Resource Name (ARN) of the extension.
name?
Type:
string
(optional, default: None.)
The name of the extension.