Interface MatchCapture
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MatchCapture.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:55.905Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forMatchCapture
static final class
An implementation forMatchCapture
-
Method Summary
Modifier and TypeMethodDescriptionstatic MatchCapture.Builder
builder()
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.Builder
ofMatchCapture
-