interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppConfig.Mixins.CfnExtensionPropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappconfig/mixins#CfnExtensionPropsMixin_ActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.appconfig.mixins.CfnExtensionPropsMixin.ActionProperty |
Python | aws_cdk.mixins_preview.aws_appconfig.mixins.CfnExtensionPropsMixin.ActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appconfig » mixins » CfnExtensionPropsMixin » 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 { mixins as appconfig_mixins } from '@aws-cdk/mixins-preview/aws-appconfig';
const actionProperty: appconfig_mixins.CfnExtensionPropsMixin.ActionProperty = {
description: 'description',
name: 'name',
roleArn: 'roleArn',
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Information about actions defined in the extension. |
| name? | string | The extension name. |
| role | string | An Amazon Resource Name (ARN) for an AWS Identity and Access Management assume role. |
| uri? | string | The extension URI associated to the action point in the extension definition. |
description?
Type:
string
(optional)
Information about actions defined in the extension.
name?
Type:
string
(optional)
The extension name.
roleArn?
Type:
string
(optional)
An Amazon Resource Name (ARN) for an AWS Identity and Access Management assume role.
uri?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript