Class CfnTestCasePropsMixin.OutputProperty
Specifies an output.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.AppTest.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTestCasePropsMixin.OutputProperty : CfnTestCasePropsMixin.IOutputProperty
Syntax (vb)
Public Class CfnTestCasePropsMixin.OutputProperty Implements CfnTestCasePropsMixin.IOutputProperty
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.Mixins.Preview.AWS.AppTest.Mixins;
var outputProperty = new OutputProperty {
File = new OutputFileProperty {
FileLocation = "fileLocation"
}
};
Synopsis
Constructors
| OutputProperty() | Specifies an output. |
Properties
| File | The file of the output. |
Constructors
OutputProperty()
Specifies an output.
public OutputProperty()
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.Mixins.Preview.AWS.AppTest.Mixins;
var outputProperty = new OutputProperty {
File = new OutputFileProperty {
FileLocation = "fileLocation"
}
};
Properties
File
The file of the output.
public object? File { get; set; }