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