Interface WirelessGatewayLogOption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WirelessGatewayLogOption.Builder,WirelessGatewayLogOption>,SdkBuilder<WirelessGatewayLogOption.Builder,WirelessGatewayLogOption>,SdkPojo
- Enclosing class:
- WirelessGatewayLogOption
public static interface WirelessGatewayLogOption.Builder extends SdkPojo, CopyableBuilder<WirelessGatewayLogOption.Builder,WirelessGatewayLogOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WirelessGatewayLogOption.Builderevents(Collection<WirelessGatewayEventLogOption> events)Sets the value of the Events property for this object.WirelessGatewayLogOption.Builderevents(Consumer<WirelessGatewayEventLogOption.Builder>... events)Sets the value of the Events property for this object.WirelessGatewayLogOption.Builderevents(WirelessGatewayEventLogOption... events)Sets the value of the Events property for this object.WirelessGatewayLogOption.BuilderlogLevel(String logLevel)Sets the value of the LogLevel property for this object.WirelessGatewayLogOption.BuilderlogLevel(LogLevel logLevel)Sets the value of the LogLevel property for this object.WirelessGatewayLogOption.Buildertype(String type)Sets the value of the Type property for this object.WirelessGatewayLogOption.Buildertype(WirelessGatewayType type)Sets the value of the Type property for this object.-
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
-
type
WirelessGatewayLogOption.Builder type(String type)
Sets the value of the Type property for this object.- Parameters:
type- The new value for the Type property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WirelessGatewayType,WirelessGatewayType
-
type
WirelessGatewayLogOption.Builder type(WirelessGatewayType type)
Sets the value of the Type property for this object.- Parameters:
type- The new value for the Type property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WirelessGatewayType,WirelessGatewayType
-
logLevel
WirelessGatewayLogOption.Builder logLevel(String logLevel)
Sets the value of the LogLevel property for this object.
-
logLevel
WirelessGatewayLogOption.Builder logLevel(LogLevel logLevel)
Sets the value of the LogLevel property for this object.
-
events
WirelessGatewayLogOption.Builder events(Collection<WirelessGatewayEventLogOption> events)
Sets the value of the Events property for this object.- Parameters:
events- The new value for the Events property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
events
WirelessGatewayLogOption.Builder events(WirelessGatewayEventLogOption... events)
Sets the value of the Events property for this object.- Parameters:
events- The new value for the Events property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
events
WirelessGatewayLogOption.Builder events(Consumer<WirelessGatewayEventLogOption.Builder>... events)
Sets the value of the Events property for this object. This is a convenience method that creates an instance of theWirelessGatewayEventLogOption.Builderavoiding the need to create one manually viaWirelessGatewayEventLogOption.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#events(List.) - Parameters:
events- a consumer that will call methods onWirelessGatewayEventLogOption.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#events(java.util.Collection)
-
-