Interface CfnTestCase.OutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTestCase.OutputProperty.Jsii$Proxy
- Enclosing class:
CfnTestCase
@Stability(Stable)
public static interface CfnTestCase.OutputProperty
extends software.amazon.jsii.JsiiSerializable
Specifies an output.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apptest.*;
OutputProperty outputProperty = OutputProperty.builder()
.file(OutputFileProperty.builder()
.fileLocation("fileLocation")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTestCase.OutputPropertystatic final classAn implementation forCfnTestCase.OutputProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFile
The file of the output.Returns union: either
IResolvableorCfnTestCase.OutputFileProperty- See Also:
-
builder
- Returns:
- a
CfnTestCase.OutputProperty.BuilderofCfnTestCase.OutputProperty
-