Interface JobMessages.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<JobMessages.Builder,JobMessages>
,SdkBuilder<JobMessages.Builder,JobMessages>
,SdkPojo
- Enclosing class:
- JobMessages
public static interface JobMessages.Builder extends SdkPojo, CopyableBuilder<JobMessages.Builder,JobMessages>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobMessages.Builder
info(String... info)
List of messages that are informational only and don't indicate a problem with your job.JobMessages.Builder
info(Collection<String> info)
List of messages that are informational only and don't indicate a problem with your job.JobMessages.Builder
warning(String... warning)
List of messages that warn about conditions that might cause your job not to run or to fail.JobMessages.Builder
warning(Collection<String> warning)
List of messages that warn about conditions that might cause your job not to run or to fail.-
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
-
info
JobMessages.Builder info(Collection<String> info)
List of messages that are informational only and don't indicate a problem with your job.- Parameters:
info
- List of messages that are informational only and don't indicate a problem with your job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
info
JobMessages.Builder info(String... info)
List of messages that are informational only and don't indicate a problem with your job.- Parameters:
info
- List of messages that are informational only and don't indicate a problem with your job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warning
JobMessages.Builder warning(Collection<String> warning)
List of messages that warn about conditions that might cause your job not to run or to fail.- Parameters:
warning
- List of messages that warn about conditions that might cause your job not to run or to fail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warning
JobMessages.Builder warning(String... warning)
List of messages that warn about conditions that might cause your job not to run or to fail.- Parameters:
warning
- List of messages that warn about conditions that might cause your job not to run or to fail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-