interface ExtensionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.ExtensionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#ExtensionProps |
Java | software.amazon.awscdk.services.appconfig.ExtensionProps |
Python | aws_cdk.aws_appconfig.ExtensionProps |
TypeScript (source) | aws-cdk-lib » aws_appconfig » ExtensionProps |
Properties for the Extension construct.
Example
declare const fn: lambda.Function;
new appconfig.Extension(this, 'MyExtension', {
actions: [
new appconfig.Action({
actionPoints: [appconfig.ActionPoint.ON_DEPLOYMENT_START],
eventDestination: new appconfig.LambdaDestination(fn),
}),
],
});
Properties
| Name | Type | Description |
|---|---|---|
| actions | Action[] | The actions for the extension. |
| description? | string | A description of the extension. |
| extension | string | The name of the extension. |
| latest | number | The latest version number of the extension. |
| parameters? | Parameter[] | The parameters accepted for the extension. |
actions
Type:
Action[]
The actions for the extension.
description?
Type:
string
(optional, default: No description.)
A description of the extension.
extensionName?
Type:
string
(optional, default: A name is generated.)
The name of the extension.
latestVersionNumber?
Type:
number
(optional, default: None.)
The latest version number of the extension.
When you create a new version, specify the most recent current version number. For example, you create version 3, enter 2 for this field.
parameters?
Type:
Parameter[]
(optional, default: None.)
The parameters accepted for the extension.

.NET
Go
Java
Python
TypeScript (