interface ExtensionOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppConfig.ExtensionOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#ExtensionOptions |
![]() | software.amazon.awscdk.services.appconfig.ExtensionOptions |
![]() | aws_cdk.aws_appconfig.ExtensionOptions |
![]() | aws-cdk-lib » aws_appconfig » ExtensionOptions |
Options for the Extension construct.
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 parameter: appconfig.Parameter;
const extensionOptions: appconfig.ExtensionOptions = {
description: 'description',
extensionName: 'extensionName',
latestVersionNumber: 123,
parameters: [parameter],
};
Properties
Name | Type | Description |
---|---|---|
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. |
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.