Interface EventInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventInput.Builder,EventInput>,SdkBuilder<EventInput.Builder,EventInput>,SdkPojo
- Enclosing class:
- EventInput
@Mutable @NotThreadSafe public static interface EventInput.Builder extends SdkPojo, CopyableBuilder<EventInput.Builder,EventInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventInput.Builderpayload(String payload)The input payload.EventInput.Buildertruncated(Boolean truncated)Indicates if the error payload was truncated due to size limits.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
payload
EventInput.Builder payload(String payload)
The input payload.
- Parameters:
payload- The input payload.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
truncated
EventInput.Builder truncated(Boolean truncated)
Indicates if the error payload was truncated due to size limits.
- Parameters:
truncated- Indicates if the error payload was truncated due to size limits.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-