Show / Hide Table of Contents

Class CfnTestCase.MainframeActionProperty

Specifies the mainframe action.

Inheritance
object
CfnTestCase.MainframeActionProperty
Implements
CfnTestCase.IMainframeActionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppTest
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTestCase.MainframeActionProperty : CfnTestCase.IMainframeActionProperty
Syntax (vb)
Public Class CfnTestCase.MainframeActionProperty Implements CfnTestCase.IMainframeActionProperty
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppTest;

             var mainframeActionProperty = new MainframeActionProperty {
                 ActionType = new MainframeActionTypeProperty {
                     Batch = new BatchProperty {
                         BatchJobName = "batchJobName",

                         // the properties below are optional
                         BatchJobParameters = new Dictionary<string, string> {
                             { "batchJobParametersKey", "batchJobParameters" }
                         },
                         ExportDataSetNames = new [] { "exportDataSetNames" }
                     },
                     Tn3270 = new TN3270Property {
                         Script = new ScriptProperty {
                             ScriptLocation = "scriptLocation",
                             Type = "type"
                         },

                         // the properties below are optional
                         ExportDataSetNames = new [] { "exportDataSetNames" }
                     }
                 },
                 Resource = "resource",

                 // the properties below are optional
                 Properties = new MainframeActionPropertiesProperty {
                     DmsTaskArn = "dmsTaskArn"
                 }
             };

Synopsis

Constructors

MainframeActionProperty()

Specifies the mainframe action.

Properties

ActionType

The action type of the mainframe action.

Properties

The properties of the mainframe action.

Resource

The resource of the mainframe action.

Constructors

MainframeActionProperty()

Specifies the mainframe action.

public MainframeActionProperty()
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppTest;

             var mainframeActionProperty = new MainframeActionProperty {
                 ActionType = new MainframeActionTypeProperty {
                     Batch = new BatchProperty {
                         BatchJobName = "batchJobName",

                         // the properties below are optional
                         BatchJobParameters = new Dictionary<string, string> {
                             { "batchJobParametersKey", "batchJobParameters" }
                         },
                         ExportDataSetNames = new [] { "exportDataSetNames" }
                     },
                     Tn3270 = new TN3270Property {
                         Script = new ScriptProperty {
                             ScriptLocation = "scriptLocation",
                             Type = "type"
                         },

                         // the properties below are optional
                         ExportDataSetNames = new [] { "exportDataSetNames" }
                     }
                 },
                 Resource = "resource",

                 // the properties below are optional
                 Properties = new MainframeActionPropertiesProperty {
                     DmsTaskArn = "dmsTaskArn"
                 }
             };

Properties

ActionType

The action type of the mainframe action.

public object ActionType { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTestCase.IMainframeActionTypeProperty

Properties

The properties of the mainframe action.

public object? Properties { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTestCase.IMainframeActionPropertiesProperty

Resource

The resource of the mainframe action.

public string Resource { get; set; }
Property Value

string

Remarks

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

Implements

CfnTestCase.IMainframeActionProperty
Back to top Generated by DocFX