interface ScriptProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.ScriptProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_ScriptProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.ScriptProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.ScriptProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » ScriptProperty |
Specifies the script.
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 scriptProperty: apptest_mixins.CfnTestCasePropsMixin.ScriptProperty = {
scriptLocation: 'scriptLocation',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| script | string | The script location of the scripts. |
| type? | string | The type of the scripts. |
scriptLocation?
Type:
string
(optional)
The script location of the scripts.
type?
Type:
string
(optional)
The type of the scripts.

.NET
Go
Java
Python
TypeScript