CfnTestCasePropsMixin

class aws_cdk.mixins_preview.aws_apptest.mixins.CfnTestCasePropsMixin(props, *, strategy=None)

Bases: Mixin

Creates a test case for an application.

For more information about test cases, see Test cases and Application Testing concepts in the AWS Mainframe Modernization User Guide .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apptest-testcase.html

CloudformationResource:

AWS::AppTest::TestCase

Mixin:

true

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview import mixins
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

cfn_test_case_props_mixin = apptest_mixins.CfnTestCasePropsMixin(apptest_mixins.CfnTestCaseMixinProps(
    description="description",
    name="name",
    steps=[apptest_mixins.CfnTestCasePropsMixin.StepProperty(
        action=apptest_mixins.CfnTestCasePropsMixin.StepActionProperty(
            compare_action=apptest_mixins.CfnTestCasePropsMixin.CompareActionProperty(
                input=apptest_mixins.CfnTestCasePropsMixin.InputProperty(
                    file=apptest_mixins.CfnTestCasePropsMixin.InputFileProperty(
                        file_metadata=apptest_mixins.CfnTestCasePropsMixin.FileMetadataProperty(
                            database_cdc=apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
                                source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
                                    capture_tool="captureTool",
                                    type="type"
                                ),
                                target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
                                    capture_tool="captureTool",
                                    type="type"
                                )
                            ),
                            data_sets=[apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
                                ccsid="ccsid",
                                format="format",
                                length=123,
                                name="name",
                                type="type"
                            )]
                        ),
                        source_location="sourceLocation",
                        target_location="targetLocation"
                    )
                ),
                output=apptest_mixins.CfnTestCasePropsMixin.OutputProperty(
                    file=apptest_mixins.CfnTestCasePropsMixin.OutputFileProperty(
                        file_location="fileLocation"
                    )
                )
            ),
            mainframe_action=apptest_mixins.CfnTestCasePropsMixin.MainframeActionProperty(
                action_type=apptest_mixins.CfnTestCasePropsMixin.MainframeActionTypeProperty(
                    batch=apptest_mixins.CfnTestCasePropsMixin.BatchProperty(
                        batch_job_name="batchJobName",
                        batch_job_parameters={
                            "batch_job_parameters_key": "batchJobParameters"
                        },
                        export_data_set_names=["exportDataSetNames"]
                    ),
                    tn3270=apptest_mixins.CfnTestCasePropsMixin.TN3270Property(
                        export_data_set_names=["exportDataSetNames"],
                        script=apptest_mixins.CfnTestCasePropsMixin.ScriptProperty(
                            script_location="scriptLocation",
                            type="type"
                        )
                    )
                ),
                properties=apptest_mixins.CfnTestCasePropsMixin.MainframeActionPropertiesProperty(
                    dms_task_arn="dmsTaskArn"
                ),
                resource="resource"
            ),
            resource_action=apptest_mixins.CfnTestCasePropsMixin.ResourceActionProperty(
                cloud_formation_action=apptest_mixins.CfnTestCasePropsMixin.CloudFormationActionProperty(
                    action_type="actionType",
                    resource="resource"
                ),
                m2_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2ManagedApplicationActionProperty(
                    action_type="actionType",
                    properties=apptest_mixins.CfnTestCasePropsMixin.M2ManagedActionPropertiesProperty(
                        force_stop=False,
                        import_data_set_location="importDataSetLocation"
                    ),
                    resource="resource"
                ),
                m2_non_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2NonManagedApplicationActionProperty(
                    action_type="actionType",
                    resource="resource"
                )
            )
        ),
        description="description",
        name="name"
    )],
    tags={
        "tags_key": "tags"
    }
),
    strategy=mixins.PropertyMergeStrategy.OVERRIDE
)

Create a mixin to apply properties to AWS::AppTest::TestCase.

Parameters:
  • props (Union[CfnTestCaseMixinProps, Dict[str, Any]]) – L1 properties to apply.

  • strategy (Optional[PropertyMergeStrategy]) – (experimental) Strategy for merging nested properties. Default: - PropertyMergeStrategy.MERGE

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

IConstruct

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['description', 'name', 'steps', 'tags']

Static Methods

classmethod is_mixin(x)

(experimental) Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

Stability:

experimental

BatchProperty

class CfnTestCasePropsMixin.BatchProperty(*, batch_job_name=None, batch_job_parameters=None, export_data_set_names=None)

Bases: object

Defines a batch.

Parameters:
  • batch_job_name (Optional[str]) – The job name of the batch.

  • batch_job_parameters (Union[Mapping[str, str], IResolvable, None]) – The batch job parameters of the batch.

  • export_data_set_names (Optional[Sequence[str]]) – The export data set names of the batch.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-batch.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

batch_property = apptest_mixins.CfnTestCasePropsMixin.BatchProperty(
    batch_job_name="batchJobName",
    batch_job_parameters={
        "batch_job_parameters_key": "batchJobParameters"
    },
    export_data_set_names=["exportDataSetNames"]
)

Attributes

batch_job_name

The job name of the batch.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-batch.html#cfn-apptest-testcase-batch-batchjobname

batch_job_parameters

The batch job parameters of the batch.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-batch.html#cfn-apptest-testcase-batch-batchjobparameters

export_data_set_names

The export data set names of the batch.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-batch.html#cfn-apptest-testcase-batch-exportdatasetnames

CloudFormationActionProperty

class CfnTestCasePropsMixin.CloudFormationActionProperty(*, action_type=None, resource=None)

Bases: object

Specifies the CloudFormation action.

Parameters:
  • action_type (Optional[str]) – The action type of the CloudFormation action.

  • resource (Optional[str]) – The resource of the CloudFormation action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-cloudformationaction.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

cloud_formation_action_property = apptest_mixins.CfnTestCasePropsMixin.CloudFormationActionProperty(
    action_type="actionType",
    resource="resource"
)

Attributes

action_type

The action type of the CloudFormation action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-cloudformationaction.html#cfn-apptest-testcase-cloudformationaction-actiontype

resource

The resource of the CloudFormation action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-cloudformationaction.html#cfn-apptest-testcase-cloudformationaction-resource

CompareActionProperty

class CfnTestCasePropsMixin.CompareActionProperty(*, input=None, output=None)

Bases: object

Compares the action.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-compareaction.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

compare_action_property = apptest_mixins.CfnTestCasePropsMixin.CompareActionProperty(
    input=apptest_mixins.CfnTestCasePropsMixin.InputProperty(
        file=apptest_mixins.CfnTestCasePropsMixin.InputFileProperty(
            file_metadata=apptest_mixins.CfnTestCasePropsMixin.FileMetadataProperty(
                database_cdc=apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
                    source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
                        capture_tool="captureTool",
                        type="type"
                    ),
                    target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
                        capture_tool="captureTool",
                        type="type"
                    )
                ),
                data_sets=[apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
                    ccsid="ccsid",
                    format="format",
                    length=123,
                    name="name",
                    type="type"
                )]
            ),
            source_location="sourceLocation",
            target_location="targetLocation"
        )
    ),
    output=apptest_mixins.CfnTestCasePropsMixin.OutputProperty(
        file=apptest_mixins.CfnTestCasePropsMixin.OutputFileProperty(
            file_location="fileLocation"
        )
    )
)

Attributes

input

The input of the compare action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-compareaction.html#cfn-apptest-testcase-compareaction-input

output

The output of the compare action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-compareaction.html#cfn-apptest-testcase-compareaction-output

DataSetProperty

class CfnTestCasePropsMixin.DataSetProperty(*, ccsid=None, format=None, length=None, name=None, type=None)

Bases: object

Defines a data set.

Parameters:
  • ccsid (Optional[str]) – The CCSID of the data set.

  • format (Optional[str]) – The format of the data set.

  • length (Union[int, float, None]) – The length of the data set.

  • name (Optional[str]) – The name of the data set.

  • type (Optional[str]) – The type of the data set.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-dataset.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

data_set_property = apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
    ccsid="ccsid",
    format="format",
    length=123,
    name="name",
    type="type"
)

Attributes

ccsid

The CCSID of the data set.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-dataset.html#cfn-apptest-testcase-dataset-ccsid

format

The format of the data set.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-dataset.html#cfn-apptest-testcase-dataset-format

length

The length of the data set.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-dataset.html#cfn-apptest-testcase-dataset-length

name

The name of the data set.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-dataset.html#cfn-apptest-testcase-dataset-name

type

The type of the data set.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-dataset.html#cfn-apptest-testcase-dataset-type

DatabaseCDCProperty

class CfnTestCasePropsMixin.DatabaseCDCProperty(*, source_metadata=None, target_metadata=None)

Bases: object

Defines the Change Data Capture (CDC) of the database.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

database_cDCProperty = apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
    source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
        capture_tool="captureTool",
        type="type"
    ),
    target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
        capture_tool="captureTool",
        type="type"
    )
)

Attributes

source_metadata

The source metadata of the database CDC.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.html#cfn-apptest-testcase-databasecdc-sourcemetadata

target_metadata

The target metadata of the database CDC.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-databasecdc.html#cfn-apptest-testcase-databasecdc-targetmetadata

FileMetadataProperty

class CfnTestCasePropsMixin.FileMetadataProperty(*, database_cdc=None, data_sets=None)

Bases: object

Specifies a file metadata.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-filemetadata.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

file_metadata_property = apptest_mixins.CfnTestCasePropsMixin.FileMetadataProperty(
    database_cdc=apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
        source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
            capture_tool="captureTool",
            type="type"
        ),
        target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
            capture_tool="captureTool",
            type="type"
        )
    ),
    data_sets=[apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
        ccsid="ccsid",
        format="format",
        length=123,
        name="name",
        type="type"
    )]
)

Attributes

data_sets

The data sets of the file metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-filemetadata.html#cfn-apptest-testcase-filemetadata-datasets

database_cdc

The database CDC of the file metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-filemetadata.html#cfn-apptest-testcase-filemetadata-databasecdc

InputFileProperty

class CfnTestCasePropsMixin.InputFileProperty(*, file_metadata=None, source_location=None, target_location=None)

Bases: object

Specifies the input file.

Parameters:
  • file_metadata (Union[IResolvable, FileMetadataProperty, Dict[str, Any], None]) – The file metadata of the input file.

  • source_location (Optional[str]) – The source location of the input file.

  • target_location (Optional[str]) – The target location of the input file.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-inputfile.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

input_file_property = apptest_mixins.CfnTestCasePropsMixin.InputFileProperty(
    file_metadata=apptest_mixins.CfnTestCasePropsMixin.FileMetadataProperty(
        database_cdc=apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
            source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
                capture_tool="captureTool",
                type="type"
            ),
            target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
                capture_tool="captureTool",
                type="type"
            )
        ),
        data_sets=[apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
            ccsid="ccsid",
            format="format",
            length=123,
            name="name",
            type="type"
        )]
    ),
    source_location="sourceLocation",
    target_location="targetLocation"
)

Attributes

file_metadata

The file metadata of the input file.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-inputfile.html#cfn-apptest-testcase-inputfile-filemetadata

source_location

The source location of the input file.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-inputfile.html#cfn-apptest-testcase-inputfile-sourcelocation

target_location

The target location of the input file.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-inputfile.html#cfn-apptest-testcase-inputfile-targetlocation

InputProperty

class CfnTestCasePropsMixin.InputProperty(*, file=None)

Bases: object

Specifies the input.

Parameters:

file (Union[IResolvable, InputFileProperty, Dict[str, Any], None]) – The file in the input.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-input.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

input_property = apptest_mixins.CfnTestCasePropsMixin.InputProperty(
    file=apptest_mixins.CfnTestCasePropsMixin.InputFileProperty(
        file_metadata=apptest_mixins.CfnTestCasePropsMixin.FileMetadataProperty(
            database_cdc=apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
                source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
                    capture_tool="captureTool",
                    type="type"
                ),
                target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
                    capture_tool="captureTool",
                    type="type"
                )
            ),
            data_sets=[apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
                ccsid="ccsid",
                format="format",
                length=123,
                name="name",
                type="type"
            )]
        ),
        source_location="sourceLocation",
        target_location="targetLocation"
    )
)

Attributes

file

The file in the input.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-input.html#cfn-apptest-testcase-input-file

M2ManagedActionPropertiesProperty

class CfnTestCasePropsMixin.M2ManagedActionPropertiesProperty(*, force_stop=None, import_data_set_location=None)

Bases: object

Specifies the Mainframe Modernization managed action properties.

Parameters:
  • force_stop (Union[bool, IResolvable, None]) – Force stops the Mainframe Modernization managed action properties.

  • import_data_set_location (Optional[str]) – The import data set location of the Mainframe Modernization managed action properties.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedactionproperties.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

m2_managed_action_properties_property = apptest_mixins.CfnTestCasePropsMixin.M2ManagedActionPropertiesProperty(
    force_stop=False,
    import_data_set_location="importDataSetLocation"
)

Attributes

force_stop

Force stops the Mainframe Modernization managed action properties.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedactionproperties.html#cfn-apptest-testcase-m2managedactionproperties-forcestop

import_data_set_location

The import data set location of the Mainframe Modernization managed action properties.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedactionproperties.html#cfn-apptest-testcase-m2managedactionproperties-importdatasetlocation

M2ManagedApplicationActionProperty

class CfnTestCasePropsMixin.M2ManagedApplicationActionProperty(*, action_type=None, properties=None, resource=None)

Bases: object

Specifies the Mainframe Modernization managed application action.

Parameters:
  • action_type (Optional[str]) – The action type of the Mainframe Modernization managed application action.

  • properties (Union[IResolvable, M2ManagedActionPropertiesProperty, Dict[str, Any], None]) – The properties of the Mainframe Modernization managed application action.

  • resource (Optional[str]) – The resource of the Mainframe Modernization managed application action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedapplicationaction.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

m2_managed_application_action_property = apptest_mixins.CfnTestCasePropsMixin.M2ManagedApplicationActionProperty(
    action_type="actionType",
    properties=apptest_mixins.CfnTestCasePropsMixin.M2ManagedActionPropertiesProperty(
        force_stop=False,
        import_data_set_location="importDataSetLocation"
    ),
    resource="resource"
)

Attributes

action_type

The action type of the Mainframe Modernization managed application action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedapplicationaction.html#cfn-apptest-testcase-m2managedapplicationaction-actiontype

properties

The properties of the Mainframe Modernization managed application action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedapplicationaction.html#cfn-apptest-testcase-m2managedapplicationaction-properties

resource

The resource of the Mainframe Modernization managed application action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2managedapplicationaction.html#cfn-apptest-testcase-m2managedapplicationaction-resource

M2NonManagedApplicationActionProperty

class CfnTestCasePropsMixin.M2NonManagedApplicationActionProperty(*, action_type=None, resource=None)

Bases: object

Specifies the Mainframe Modernization non-managed application action.

Parameters:
  • action_type (Optional[str]) – The action type of the Mainframe Modernization non-managed application action.

  • resource (Optional[str]) – The resource of the Mainframe Modernization non-managed application action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2nonmanagedapplicationaction.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

m2_non_managed_application_action_property = apptest_mixins.CfnTestCasePropsMixin.M2NonManagedApplicationActionProperty(
    action_type="actionType",
    resource="resource"
)

Attributes

action_type

The action type of the Mainframe Modernization non-managed application action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2nonmanagedapplicationaction.html#cfn-apptest-testcase-m2nonmanagedapplicationaction-actiontype

resource

The resource of the Mainframe Modernization non-managed application action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-m2nonmanagedapplicationaction.html#cfn-apptest-testcase-m2nonmanagedapplicationaction-resource

MainframeActionPropertiesProperty

class CfnTestCasePropsMixin.MainframeActionPropertiesProperty(*, dms_task_arn=None)

Bases: object

Specifies the mainframe action properties.

Parameters:

dms_task_arn (Optional[str]) – The DMS task ARN of the mainframe action properties.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeactionproperties.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

mainframe_action_properties_property = apptest_mixins.CfnTestCasePropsMixin.MainframeActionPropertiesProperty(
    dms_task_arn="dmsTaskArn"
)

Attributes

dms_task_arn

The DMS task ARN of the mainframe action properties.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeactionproperties.html#cfn-apptest-testcase-mainframeactionproperties-dmstaskarn

MainframeActionProperty

class CfnTestCasePropsMixin.MainframeActionProperty(*, action_type=None, properties=None, resource=None)

Bases: object

Specifies the mainframe action.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeaction.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

mainframe_action_property = apptest_mixins.CfnTestCasePropsMixin.MainframeActionProperty(
    action_type=apptest_mixins.CfnTestCasePropsMixin.MainframeActionTypeProperty(
        batch=apptest_mixins.CfnTestCasePropsMixin.BatchProperty(
            batch_job_name="batchJobName",
            batch_job_parameters={
                "batch_job_parameters_key": "batchJobParameters"
            },
            export_data_set_names=["exportDataSetNames"]
        ),
        tn3270=apptest_mixins.CfnTestCasePropsMixin.TN3270Property(
            export_data_set_names=["exportDataSetNames"],
            script=apptest_mixins.CfnTestCasePropsMixin.ScriptProperty(
                script_location="scriptLocation",
                type="type"
            )
        )
    ),
    properties=apptest_mixins.CfnTestCasePropsMixin.MainframeActionPropertiesProperty(
        dms_task_arn="dmsTaskArn"
    ),
    resource="resource"
)

Attributes

action_type

The action type of the mainframe action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeaction.html#cfn-apptest-testcase-mainframeaction-actiontype

properties

The properties of the mainframe action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeaction.html#cfn-apptest-testcase-mainframeaction-properties

resource

The resource of the mainframe action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeaction.html#cfn-apptest-testcase-mainframeaction-resource

MainframeActionTypeProperty

class CfnTestCasePropsMixin.MainframeActionTypeProperty(*, batch=None, tn3270=None)

Bases: object

Specifies the mainframe action type.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeactiontype.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

mainframe_action_type_property = apptest_mixins.CfnTestCasePropsMixin.MainframeActionTypeProperty(
    batch=apptest_mixins.CfnTestCasePropsMixin.BatchProperty(
        batch_job_name="batchJobName",
        batch_job_parameters={
            "batch_job_parameters_key": "batchJobParameters"
        },
        export_data_set_names=["exportDataSetNames"]
    ),
    tn3270=apptest_mixins.CfnTestCasePropsMixin.TN3270Property(
        export_data_set_names=["exportDataSetNames"],
        script=apptest_mixins.CfnTestCasePropsMixin.ScriptProperty(
            script_location="scriptLocation",
            type="type"
        )
    )
)

Attributes

batch

The batch of the mainframe action type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeactiontype.html#cfn-apptest-testcase-mainframeactiontype-batch

tn3270

The tn3270 port of the mainframe action type.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-mainframeactiontype.html#cfn-apptest-testcase-mainframeactiontype-tn3270

OutputFileProperty

class CfnTestCasePropsMixin.OutputFileProperty(*, file_location=None)

Bases: object

Specifies an output file.

Parameters:

file_location (Optional[str]) – The file location of the output file.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-outputfile.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

output_file_property = apptest_mixins.CfnTestCasePropsMixin.OutputFileProperty(
    file_location="fileLocation"
)

Attributes

file_location

The file location of the output file.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-outputfile.html#cfn-apptest-testcase-outputfile-filelocation

OutputProperty

class CfnTestCasePropsMixin.OutputProperty(*, file=None)

Bases: object

Specifies an output.

Parameters:

file (Union[IResolvable, OutputFileProperty, Dict[str, Any], None]) – The file of the output.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-output.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

output_property = apptest_mixins.CfnTestCasePropsMixin.OutputProperty(
    file=apptest_mixins.CfnTestCasePropsMixin.OutputFileProperty(
        file_location="fileLocation"
    )
)

Attributes

file

The file of the output.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-output.html#cfn-apptest-testcase-output-file

ResourceActionProperty

class CfnTestCasePropsMixin.ResourceActionProperty(*, cloud_formation_action=None, m2_managed_application_action=None, m2_non_managed_application_action=None)

Bases: object

Specifies a resource action.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-resourceaction.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

resource_action_property = apptest_mixins.CfnTestCasePropsMixin.ResourceActionProperty(
    cloud_formation_action=apptest_mixins.CfnTestCasePropsMixin.CloudFormationActionProperty(
        action_type="actionType",
        resource="resource"
    ),
    m2_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2ManagedApplicationActionProperty(
        action_type="actionType",
        properties=apptest_mixins.CfnTestCasePropsMixin.M2ManagedActionPropertiesProperty(
            force_stop=False,
            import_data_set_location="importDataSetLocation"
        ),
        resource="resource"
    ),
    m2_non_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2NonManagedApplicationActionProperty(
        action_type="actionType",
        resource="resource"
    )
)

Attributes

cloud_formation_action

The CloudFormation action of the resource action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-resourceaction.html#cfn-apptest-testcase-resourceaction-cloudformationaction

m2_managed_application_action

The Mainframe Modernization managed application action of the resource action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-resourceaction.html#cfn-apptest-testcase-resourceaction-m2managedapplicationaction

m2_non_managed_application_action

The Mainframe Modernization non-managed application action of the resource action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-resourceaction.html#cfn-apptest-testcase-resourceaction-m2nonmanagedapplicationaction

ScriptProperty

class CfnTestCasePropsMixin.ScriptProperty(*, script_location=None, type=None)

Bases: object

Specifies the script.

Parameters:
  • script_location (Optional[str]) – The script location of the scripts.

  • type (Optional[str]) – The type of the scripts.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-script.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

script_property = apptest_mixins.CfnTestCasePropsMixin.ScriptProperty(
    script_location="scriptLocation",
    type="type"
)

Attributes

script_location

The script location of the scripts.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-script.html#cfn-apptest-testcase-script-scriptlocation

type

The type of the scripts.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-script.html#cfn-apptest-testcase-script-type

SourceDatabaseMetadataProperty

class CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(*, capture_tool=None, type=None)

Bases: object

Specifies the source database metadata.

Parameters:
  • capture_tool (Optional[str]) – The capture tool of the source database metadata.

  • type (Optional[str]) – The type of the source database metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-sourcedatabasemetadata.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

source_database_metadata_property = apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
    capture_tool="captureTool",
    type="type"
)

Attributes

capture_tool

The capture tool of the source database metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-sourcedatabasemetadata.html#cfn-apptest-testcase-sourcedatabasemetadata-capturetool

type

The type of the source database metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-sourcedatabasemetadata.html#cfn-apptest-testcase-sourcedatabasemetadata-type

StepActionProperty

class CfnTestCasePropsMixin.StepActionProperty(*, compare_action=None, mainframe_action=None, resource_action=None)

Bases: object

Specifies a step action.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-stepaction.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

step_action_property = apptest_mixins.CfnTestCasePropsMixin.StepActionProperty(
    compare_action=apptest_mixins.CfnTestCasePropsMixin.CompareActionProperty(
        input=apptest_mixins.CfnTestCasePropsMixin.InputProperty(
            file=apptest_mixins.CfnTestCasePropsMixin.InputFileProperty(
                file_metadata=apptest_mixins.CfnTestCasePropsMixin.FileMetadataProperty(
                    database_cdc=apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
                        source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
                            capture_tool="captureTool",
                            type="type"
                        ),
                        target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
                            capture_tool="captureTool",
                            type="type"
                        )
                    ),
                    data_sets=[apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
                        ccsid="ccsid",
                        format="format",
                        length=123,
                        name="name",
                        type="type"
                    )]
                ),
                source_location="sourceLocation",
                target_location="targetLocation"
            )
        ),
        output=apptest_mixins.CfnTestCasePropsMixin.OutputProperty(
            file=apptest_mixins.CfnTestCasePropsMixin.OutputFileProperty(
                file_location="fileLocation"
            )
        )
    ),
    mainframe_action=apptest_mixins.CfnTestCasePropsMixin.MainframeActionProperty(
        action_type=apptest_mixins.CfnTestCasePropsMixin.MainframeActionTypeProperty(
            batch=apptest_mixins.CfnTestCasePropsMixin.BatchProperty(
                batch_job_name="batchJobName",
                batch_job_parameters={
                    "batch_job_parameters_key": "batchJobParameters"
                },
                export_data_set_names=["exportDataSetNames"]
            ),
            tn3270=apptest_mixins.CfnTestCasePropsMixin.TN3270Property(
                export_data_set_names=["exportDataSetNames"],
                script=apptest_mixins.CfnTestCasePropsMixin.ScriptProperty(
                    script_location="scriptLocation",
                    type="type"
                )
            )
        ),
        properties=apptest_mixins.CfnTestCasePropsMixin.MainframeActionPropertiesProperty(
            dms_task_arn="dmsTaskArn"
        ),
        resource="resource"
    ),
    resource_action=apptest_mixins.CfnTestCasePropsMixin.ResourceActionProperty(
        cloud_formation_action=apptest_mixins.CfnTestCasePropsMixin.CloudFormationActionProperty(
            action_type="actionType",
            resource="resource"
        ),
        m2_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2ManagedApplicationActionProperty(
            action_type="actionType",
            properties=apptest_mixins.CfnTestCasePropsMixin.M2ManagedActionPropertiesProperty(
                force_stop=False,
                import_data_set_location="importDataSetLocation"
            ),
            resource="resource"
        ),
        m2_non_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2NonManagedApplicationActionProperty(
            action_type="actionType",
            resource="resource"
        )
    )
)

Attributes

compare_action

The compare action of the step action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-stepaction.html#cfn-apptest-testcase-stepaction-compareaction

mainframe_action

The mainframe action of the step action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-stepaction.html#cfn-apptest-testcase-stepaction-mainframeaction

resource_action

The resource action of the step action.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-stepaction.html#cfn-apptest-testcase-stepaction-resourceaction

StepProperty

class CfnTestCasePropsMixin.StepProperty(*, action=None, description=None, name=None)

Bases: object

Defines a step.

Parameters:
  • action (Union[IResolvable, StepActionProperty, Dict[str, Any], None]) – The action of the step.

  • description (Optional[str]) – The description of the step.

  • name (Optional[str]) – The name of the step.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-step.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

step_property = apptest_mixins.CfnTestCasePropsMixin.StepProperty(
    action=apptest_mixins.CfnTestCasePropsMixin.StepActionProperty(
        compare_action=apptest_mixins.CfnTestCasePropsMixin.CompareActionProperty(
            input=apptest_mixins.CfnTestCasePropsMixin.InputProperty(
                file=apptest_mixins.CfnTestCasePropsMixin.InputFileProperty(
                    file_metadata=apptest_mixins.CfnTestCasePropsMixin.FileMetadataProperty(
                        database_cdc=apptest_mixins.CfnTestCasePropsMixin.DatabaseCDCProperty(
                            source_metadata=apptest_mixins.CfnTestCasePropsMixin.SourceDatabaseMetadataProperty(
                                capture_tool="captureTool",
                                type="type"
                            ),
                            target_metadata=apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
                                capture_tool="captureTool",
                                type="type"
                            )
                        ),
                        data_sets=[apptest_mixins.CfnTestCasePropsMixin.DataSetProperty(
                            ccsid="ccsid",
                            format="format",
                            length=123,
                            name="name",
                            type="type"
                        )]
                    ),
                    source_location="sourceLocation",
                    target_location="targetLocation"
                )
            ),
            output=apptest_mixins.CfnTestCasePropsMixin.OutputProperty(
                file=apptest_mixins.CfnTestCasePropsMixin.OutputFileProperty(
                    file_location="fileLocation"
                )
            )
        ),
        mainframe_action=apptest_mixins.CfnTestCasePropsMixin.MainframeActionProperty(
            action_type=apptest_mixins.CfnTestCasePropsMixin.MainframeActionTypeProperty(
                batch=apptest_mixins.CfnTestCasePropsMixin.BatchProperty(
                    batch_job_name="batchJobName",
                    batch_job_parameters={
                        "batch_job_parameters_key": "batchJobParameters"
                    },
                    export_data_set_names=["exportDataSetNames"]
                ),
                tn3270=apptest_mixins.CfnTestCasePropsMixin.TN3270Property(
                    export_data_set_names=["exportDataSetNames"],
                    script=apptest_mixins.CfnTestCasePropsMixin.ScriptProperty(
                        script_location="scriptLocation",
                        type="type"
                    )
                )
            ),
            properties=apptest_mixins.CfnTestCasePropsMixin.MainframeActionPropertiesProperty(
                dms_task_arn="dmsTaskArn"
            ),
            resource="resource"
        ),
        resource_action=apptest_mixins.CfnTestCasePropsMixin.ResourceActionProperty(
            cloud_formation_action=apptest_mixins.CfnTestCasePropsMixin.CloudFormationActionProperty(
                action_type="actionType",
                resource="resource"
            ),
            m2_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2ManagedApplicationActionProperty(
                action_type="actionType",
                properties=apptest_mixins.CfnTestCasePropsMixin.M2ManagedActionPropertiesProperty(
                    force_stop=False,
                    import_data_set_location="importDataSetLocation"
                ),
                resource="resource"
            ),
            m2_non_managed_application_action=apptest_mixins.CfnTestCasePropsMixin.M2NonManagedApplicationActionProperty(
                action_type="actionType",
                resource="resource"
            )
        )
    ),
    description="description",
    name="name"
)

Attributes

action

The action of the step.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-step.html#cfn-apptest-testcase-step-action

description

The description of the step.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-step.html#cfn-apptest-testcase-step-description

name

The name of the step.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-step.html#cfn-apptest-testcase-step-name

TN3270Property

class CfnTestCasePropsMixin.TN3270Property(*, export_data_set_names=None, script=None)

Bases: object

Specifies the TN3270 protocol.

Parameters:
  • export_data_set_names (Optional[Sequence[str]]) – The data set names of the TN3270 protocol.

  • script (Union[IResolvable, ScriptProperty, Dict[str, Any], None]) – The script of the TN3270 protocol.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-tn3270.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

t_n3270_property = apptest_mixins.CfnTestCasePropsMixin.TN3270Property(
    export_data_set_names=["exportDataSetNames"],
    script=apptest_mixins.CfnTestCasePropsMixin.ScriptProperty(
        script_location="scriptLocation",
        type="type"
    )
)

Attributes

export_data_set_names

The data set names of the TN3270 protocol.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-tn3270.html#cfn-apptest-testcase-tn3270-exportdatasetnames

script

The script of the TN3270 protocol.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-tn3270.html#cfn-apptest-testcase-tn3270-script

TargetDatabaseMetadataProperty

class CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(*, capture_tool=None, type=None)

Bases: object

Specifies a target database metadata.

Parameters:
  • capture_tool (Optional[str]) – The capture tool of the target database metadata.

  • type (Optional[str]) – The type of the target database metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-targetdatabasemetadata.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

target_database_metadata_property = apptest_mixins.CfnTestCasePropsMixin.TargetDatabaseMetadataProperty(
    capture_tool="captureTool",
    type="type"
)

Attributes

capture_tool

The capture tool of the target database metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-targetdatabasemetadata.html#cfn-apptest-testcase-targetdatabasemetadata-capturetool

type

The type of the target database metadata.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-targetdatabasemetadata.html#cfn-apptest-testcase-targetdatabasemetadata-type

TestCaseLatestVersionProperty

class CfnTestCasePropsMixin.TestCaseLatestVersionProperty(*, status=None, version=None)

Bases: object

Specifies the latest version of a test case.

Parameters:
  • status (Optional[str]) – The status of the test case latest version.

  • version (Union[int, float, None]) – The version of the test case latest version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-testcaselatestversion.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_apptest import mixins as apptest_mixins

test_case_latest_version_property = apptest_mixins.CfnTestCasePropsMixin.TestCaseLatestVersionProperty(
    status="status",
    version=123
)

Attributes

status

The status of the test case latest version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-testcaselatestversion.html#cfn-apptest-testcase-testcaselatestversion-status

version

The version of the test case latest version.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apptest-testcase-testcaselatestversion.html#cfn-apptest-testcase-testcaselatestversion-version