Class CfnTestCase.MainframeActionProperty
Specifies the mainframe action.
Implements
Inherited Members
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
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
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
Remarks
Properties
The properties of the mainframe action.
public object? Properties { get; set; }
Property Value
Remarks
Resource
The resource of the mainframe action.
public string Resource { get; set; }