Interface Logging.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Logging.Builder,Logging>,SdkBuilder<Logging.Builder,Logging>,SdkPojo
- Enclosing class:
- Logging
public static interface Logging.Builder extends SdkPojo, CopyableBuilder<Logging.Builder,Logging>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Logging.BuilderaccessLog(Consumer<AccessLog.Builder> accessLog)The access log configuration for a virtual node.Logging.BuilderaccessLog(AccessLog accessLog)The access log configuration for a virtual node.-
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
-
accessLog
Logging.Builder accessLog(AccessLog accessLog)
The access log configuration for a virtual node.
- Parameters:
accessLog- The access log configuration for a virtual node.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accessLog
default Logging.Builder accessLog(Consumer<AccessLog.Builder> accessLog)
The access log configuration for a virtual node.
This is a convenience method that creates an instance of theAccessLog.Builderavoiding the need to create one manually viaAccessLog.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toaccessLog(AccessLog).- Parameters:
accessLog- a consumer that will call methods onAccessLog.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
accessLog(AccessLog)
-
-