Interface LoggingFormat.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LoggingFormat.Builder,LoggingFormat>,SdkBuilder<LoggingFormat.Builder,LoggingFormat>,SdkPojo
- Enclosing class:
- LoggingFormat
public static interface LoggingFormat.Builder extends SdkPojo, CopyableBuilder<LoggingFormat.Builder,LoggingFormat>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LoggingFormat.Builderjson(Collection<JsonFormatRef> json)LoggingFormat.Builderjson(Consumer<JsonFormatRef.Builder>... json)This is a convenience method that creates an instance of theJsonFormatRef.Builderavoiding the need to create one manually viaJsonFormatRef.builder().LoggingFormat.Builderjson(JsonFormatRef... json)LoggingFormat.Buildertext(String text)-
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, sdkFields
-
-
-
-
Method Detail
-
json
LoggingFormat.Builder json(Collection<JsonFormatRef> json)
- Parameters:
json-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
json
LoggingFormat.Builder json(JsonFormatRef... json)
- Parameters:
json-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
json
LoggingFormat.Builder json(Consumer<JsonFormatRef.Builder>... json)
This is a convenience method that creates an instance of theJsonFormatRef.Builderavoiding the need to create one manually viaJsonFormatRef.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#json(List.) - Parameters:
json- a consumer that will call methods onJsonFormatRef.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#json(java.util.Collection)
-
text
LoggingFormat.Builder text(String text)
- Parameters:
text-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-