interface ScriptProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppTest.CfnTestCasePropsMixin.ScriptProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapptest#CfnTestCasePropsMixin_ScriptProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apptest.CfnTestCasePropsMixin.ScriptProperty |
Python | aws_cdk.cfn_property_mixins.aws_apptest.CfnTestCasePropsMixin.ScriptProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apptest » 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 { aws_apptest as apptest } from '@aws-cdk/cfn-property-mixins';
const scriptProperty: apptest.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