Interface WirelessDeviceLogOption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WirelessDeviceLogOption.Builder,WirelessDeviceLogOption>,SdkBuilder<WirelessDeviceLogOption.Builder,WirelessDeviceLogOption>,SdkPojo
- Enclosing class:
- WirelessDeviceLogOption
public static interface WirelessDeviceLogOption.Builder extends SdkPojo, CopyableBuilder<WirelessDeviceLogOption.Builder,WirelessDeviceLogOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WirelessDeviceLogOption.Builderevents(Collection<WirelessDeviceEventLogOption> events)Sets the value of the Events property for this object.WirelessDeviceLogOption.Builderevents(Consumer<WirelessDeviceEventLogOption.Builder>... events)Sets the value of the Events property for this object.WirelessDeviceLogOption.Builderevents(WirelessDeviceEventLogOption... events)Sets the value of the Events property for this object.WirelessDeviceLogOption.BuilderlogLevel(String logLevel)Sets the value of the LogLevel property for this object.WirelessDeviceLogOption.BuilderlogLevel(LogLevel logLevel)Sets the value of the LogLevel property for this object.WirelessDeviceLogOption.Buildertype(String type)The wireless device type.WirelessDeviceLogOption.Buildertype(WirelessDeviceType type)The wireless device type.-
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
-
type
WirelessDeviceLogOption.Builder type(String type)
The wireless device type.
- Parameters:
type- The wireless device type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WirelessDeviceType,WirelessDeviceType
-
type
WirelessDeviceLogOption.Builder type(WirelessDeviceType type)
The wireless device type.
- Parameters:
type- The wireless device type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WirelessDeviceType,WirelessDeviceType
-
logLevel
WirelessDeviceLogOption.Builder logLevel(String logLevel)
Sets the value of the LogLevel property for this object.
-
logLevel
WirelessDeviceLogOption.Builder logLevel(LogLevel logLevel)
Sets the value of the LogLevel property for this object.
-
events
WirelessDeviceLogOption.Builder events(Collection<WirelessDeviceEventLogOption> 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
WirelessDeviceLogOption.Builder events(WirelessDeviceEventLogOption... 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
WirelessDeviceLogOption.Builder events(Consumer<WirelessDeviceEventLogOption.Builder>... events)
Sets the value of the Events property for this object. This is a convenience method that creates an instance of theWirelessDeviceEventLogOption.Builderavoiding the need to create one manually viaWirelessDeviceEventLogOption.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 onWirelessDeviceEventLogOption.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#events(java.util.Collection)
-
-