interface CloudFormationActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.CloudFormationActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_CloudFormationActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.CloudFormationActionProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.CloudFormationActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » CloudFormationActionProperty |
Specifies the CloudFormation action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apptest_mixins } from '@aws-cdk/mixins-preview/aws-apptest';
const cloudFormationActionProperty: apptest_mixins.CfnTestCasePropsMixin.CloudFormationActionProperty = {
actionType: 'actionType',
resource: 'resource',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The action type of the CloudFormation action. |
| resource? | string | The resource of the CloudFormation action. |
actionType?
Type:
string
(optional)
The action type of the CloudFormation action.
resource?
Type:
string
(optional)
The resource of the CloudFormation action.

.NET
Go
Java
Python
TypeScript