interface CfnExtensionAssociationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppConfig.CfnExtensionAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnExtensionAssociationProps |
Java | software.amazon.awscdk.services.appconfig.CfnExtensionAssociationProps |
Python | aws_cdk.aws_appconfig.CfnExtensionAssociationProps |
TypeScript | aws-cdk-lib » aws_appconfig » CfnExtensionAssociationProps |
Properties for defining a CfnExtensionAssociation
.
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';
const cfnExtensionAssociationProps: appconfig.CfnExtensionAssociationProps = {
extensionIdentifier: 'extensionIdentifier',
extensionVersionNumber: 123,
parameters: {
parametersKey: 'parameters',
},
resourceIdentifier: 'resourceIdentifier',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
extension | string | The name, the ID, or the Amazon Resource Name (ARN) of the extension. |
extension | number | The version number of the extension. |
parameters? | IResolvable | { [string]: string } | The parameter names and values defined in the extensions. |
resource | string | The ARN of an application, configuration profile, or environment. |
tags? | Cfn [] | Adds one or more tags for the specified extension association. |
extensionIdentifier?
Type:
string
(optional)
The name, the ID, or the Amazon Resource Name (ARN) of the extension.
extensionVersionNumber?
Type:
number
(optional)
The version number of the extension.
If not specified, AWS AppConfig uses the maximum version of the extension.
parameters?
Type:
IResolvable
| { [string]: string }
(optional)
The parameter names and values defined in the extensions.
Extension parameters marked Required
must be entered for this field.
resourceIdentifier?
Type:
string
(optional)
The ARN of an application, configuration profile, or environment.
tags?
Type:
Cfn
[]
(optional)
Adds one or more tags for the specified extension association.
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.