interface DataSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins.CfnTestCasePropsMixin.DataSetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapptest/mixins#CfnTestCasePropsMixin_DataSetProperty |
Java | software.amazon.awscdk.mixins.preview.services.apptest.mixins.CfnTestCasePropsMixin.DataSetProperty |
Python | aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin.DataSetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apptest » mixins » CfnTestCasePropsMixin » DataSetProperty |
Defines a data set.
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 dataSetProperty: apptest_mixins.CfnTestCasePropsMixin.DataSetProperty = {
ccsid: 'ccsid',
format: 'format',
length: 123,
name: 'name',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| ccsid? | string | The CCSID of the data set. |
| format? | string | The format of the data set. |
| length? | number | The length of the data set. |
| name? | string | The name of the data set. |
| type? | string | The type of the data set. |
ccsid?
Type:
string
(optional)
The CCSID of the data set.
format?
Type:
string
(optional)
The format of the data set.
length?
Type:
number
(optional)
The length of the data set.
name?
Type:
string
(optional)
The name of the data set.
type?
Type:
string
(optional)
The type of the data set.

.NET
Go
Java
Python
TypeScript