interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.CfnExtension.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnExtension_ActionProperty |
Java | software.amazon.awscdk.services.appconfig.CfnExtension.ActionProperty |
Python | aws_cdk.aws_appconfig.CfnExtension.ActionProperty |
TypeScript | aws-cdk-lib » aws_appconfig » CfnExtension » ActionProperty |
The actions defined in the extension.
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 actionProperty: appconfig.CfnExtension.ActionProperty = {
name: 'name',
uri: 'uri',
// the properties below are optional
description: 'description',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The extension name. |
| uri | string | The extension URI associated to the action point in the extension definition. |
| description? | string | Information about actions defined in the extension. |
| role | string | An Amazon Resource Name (ARN) for an AWS Identity and Access Management assume role. |
name
Type:
string
The extension name.
uri
Type:
string
The extension URI associated to the action point in the extension definition.
The URI can be an Amazon Resource Name (ARN) for one of the following: an AWS Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
description?
Type:
string
(optional)
Information about actions defined in the extension.
roleArn?
Type:
string
(optional)
An Amazon Resource Name (ARN) for an AWS Identity and Access Management assume role.

.NET
Go
Java
Python
TypeScript