@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.313Z") @Stability(value=Stable) public interface RuleTargetInputProperties extends software.amazon.jsii.JsiiSerializable
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.events.*;
RuleTargetInputProperties ruleTargetInputProperties = RuleTargetInputProperties.builder()
.input("input")
.inputPath("inputPath")
.inputPathsMap(Map.of(
"inputPathsMapKey", "inputPathsMap"))
.inputTemplate("inputTemplate")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
RuleTargetInputProperties.Builder
A builder for
RuleTargetInputProperties |
static class |
RuleTargetInputProperties.Jsii$Proxy
An implementation for
RuleTargetInputProperties |
| Modifier and Type | Method and Description |
|---|---|
static RuleTargetInputProperties.Builder |
builder() |
default String |
getInput()
Literal input to the target service (must be valid JSON).
|
default String |
getInputPath()
JsonPath to take input from the input event.
|
default Map<String,String> |
getInputPathsMap()
Paths map to extract values from event and insert into `inputTemplate`.
|
default String |
getInputTemplate()
Input template to insert paths map into.
|
@Stability(value=Stable) @Nullable default String getInput()
Default: - input for the event target. If the input contains a paths map values wil be extracted from event and inserted into the `inputTemplate`.
@Stability(value=Stable) @Nullable default String getInputPath()
Default: - None. The entire matched event is passed as input
@Stability(value=Stable) @Nullable default Map<String,String> getInputPathsMap()
Default: - No values extracted from event.
@Stability(value=Stable) @Nullable default String getInputTemplate()
Default: - None.
@Stability(value=Stable) static RuleTargetInputProperties.Builder builder()
RuleTargetInputProperties.Builder of RuleTargetInputPropertiesCopyright © 2022. All rights reserved.