interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppConfig.CfnExtensionPropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappconfig#CfnExtensionPropsMixin_ActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appconfig.CfnExtensionPropsMixin.ActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_appconfig.CfnExtensionPropsMixin.ActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appconfig » 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 { aws_appconfig as appconfig } from '@aws-cdk/cfn-property-mixins';
const actionProperty: appconfig.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