interface CfnExtensionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppConfig.CfnExtensionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappconfig#CfnExtensionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.appconfig.CfnExtensionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_appconfig.CfnExtensionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appconfig » CfnExtensionMixinProps |
Properties for CfnExtensionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extension.html
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/cfn-property-mixins';
declare const actions: any;
const cfnExtensionMixinProps: appconfig.CfnExtensionMixinProps = {
actions: actions,
description: 'description',
latestVersionNumber: 123,
name: 'name',
parameters: {
parametersKey: {
description: 'description',
dynamic: false,
required: false,
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | any | The actions defined in the extension. |
| description? | string | Information about the extension. |
| latest | number | You can omit this field when you create an extension. |
| name? | string | A name for the extension. |
| parameters? | IResolvable | { [string]: IResolvable | Parameter } | The parameters accepted by the extension. |
| tags? | Cfn[] | Adds one or more tags for the specified extension. |
actions?
Type:
any
(optional)
The actions defined in the extension.
description?
Type:
string
(optional)
Information about the extension.
latestVersionNumber?
Type:
number
(optional)
You can omit this field when you create an 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.
name?
Type:
string
(optional)
A name for the extension.
Each extension name in your account must be unique. Extension versions use the same name.
parameters?
Type:
IResolvable | { [string]: IResolvable | Parameter }
(optional)
The parameters accepted by the extension.
You specify parameter values when you associate the extension to an AWS AppConfig resource by using the CreateExtensionAssociation API action. For AWS Lambda extension actions, these parameters are included in the Lambda request object.
tags?
Type:
Cfn[]
(optional)
Adds one or more tags for the specified extension.
Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.

.NET
Go
Java
Python
TypeScript