Interface MatchCapture
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MatchCapture.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.196Z")
@Stability(Stable)
public interface MatchCapture
extends software.amazon.jsii.JsiiSerializable
Information about a value captured during match.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.assertions.*;
Capture capture;
Object value;
MatchCapture matchCapture = MatchCapture.builder()
.capture(capture)
.value(value)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMatchCapturestatic final classAn implementation forMatchCapture -
Method Summary
Modifier and TypeMethodDescriptionstatic MatchCapture.Builderbuilder()The instance of Capture class to which this capture is associated with.getValue()The value that was captured.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCapture
The instance of Capture class to which this capture is associated with. -
getValue
The value that was captured. -
builder
- Returns:
- a
MatchCapture.BuilderofMatchCapture
-