Interface PersistentAppUI.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PersistentAppUI.Builder,PersistentAppUI>,SdkBuilder<PersistentAppUI.Builder,PersistentAppUI>,SdkPojo
- Enclosing class:
- PersistentAppUI
@Mutable @NotThreadSafe public static interface PersistentAppUI.Builder extends SdkPojo, CopyableBuilder<PersistentAppUI.Builder,PersistentAppUI>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PersistentAppUI.BuilderauthorId(String authorId)The author ID for the persistent application user interface object.PersistentAppUI.BuildercreationTime(Instant creationTime)The creation date and time for the persistent application user interface object.PersistentAppUI.BuilderlastModifiedTime(Instant lastModifiedTime)The date and time the persistent application user interface object was last changed.PersistentAppUI.BuilderlastStateChangeReason(String lastStateChangeReason)The reason the persistent application user interface object was last changed.PersistentAppUI.BuilderpersistentAppUIId(String persistentAppUIId)The identifier for the persistent application user interface object.PersistentAppUI.BuilderpersistentAppUIStatus(String persistentAppUIStatus)The status for the persistent application user interface object.PersistentAppUI.BuilderpersistentAppUITypeList(Collection<PersistentAppUIType> persistentAppUITypeList)The type list for the persistent application user interface object.PersistentAppUI.BuilderpersistentAppUITypeList(PersistentAppUIType... persistentAppUITypeList)The type list for the persistent application user interface object.PersistentAppUI.BuilderpersistentAppUITypeListWithStrings(String... persistentAppUITypeList)The type list for the persistent application user interface object.PersistentAppUI.BuilderpersistentAppUITypeListWithStrings(Collection<String> persistentAppUITypeList)The type list for the persistent application user interface object.PersistentAppUI.Buildertags(Collection<Tag> tags)A collection of tags for the persistent application user interface object.PersistentAppUI.Buildertags(Consumer<Tag.Builder>... tags)A collection of tags for the persistent application user interface object.PersistentAppUI.Buildertags(Tag... tags)A collection of tags for the persistent application user interface 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
persistentAppUIId
PersistentAppUI.Builder persistentAppUIId(String persistentAppUIId)
The identifier for the persistent application user interface object.
- Parameters:
persistentAppUIId- The identifier for the persistent application user interface object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
persistentAppUITypeListWithStrings
PersistentAppUI.Builder persistentAppUITypeListWithStrings(Collection<String> persistentAppUITypeList)
The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.
- Parameters:
persistentAppUITypeList- The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
persistentAppUITypeListWithStrings
PersistentAppUI.Builder persistentAppUITypeListWithStrings(String... persistentAppUITypeList)
The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.
- Parameters:
persistentAppUITypeList- The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
persistentAppUITypeList
PersistentAppUI.Builder persistentAppUITypeList(Collection<PersistentAppUIType> persistentAppUITypeList)
The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.
- Parameters:
persistentAppUITypeList- The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
persistentAppUITypeList
PersistentAppUI.Builder persistentAppUITypeList(PersistentAppUIType... persistentAppUITypeList)
The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.
- Parameters:
persistentAppUITypeList- The type list for the persistent application user interface object. Valid values include SHS, YTS, or TEZ.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
persistentAppUIStatus
PersistentAppUI.Builder persistentAppUIStatus(String persistentAppUIStatus)
The status for the persistent application user interface object.
- Parameters:
persistentAppUIStatus- The status for the persistent application user interface object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorId
PersistentAppUI.Builder authorId(String authorId)
The author ID for the persistent application user interface object.
- Parameters:
authorId- The author ID for the persistent application user interface object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
creationTime
PersistentAppUI.Builder creationTime(Instant creationTime)
The creation date and time for the persistent application user interface object.
- Parameters:
creationTime- The creation date and time for the persistent application user interface object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
PersistentAppUI.Builder lastModifiedTime(Instant lastModifiedTime)
The date and time the persistent application user interface object was last changed.
- Parameters:
lastModifiedTime- The date and time the persistent application user interface object was last changed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastStateChangeReason
PersistentAppUI.Builder lastStateChangeReason(String lastStateChangeReason)
The reason the persistent application user interface object was last changed.
- Parameters:
lastStateChangeReason- The reason the persistent application user interface object was last changed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PersistentAppUI.Builder tags(Collection<Tag> tags)
A collection of tags for the persistent application user interface object.
- Parameters:
tags- A collection of tags for the persistent application user interface object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PersistentAppUI.Builder tags(Tag... tags)
A collection of tags for the persistent application user interface object.
- Parameters:
tags- A collection of tags for the persistent application user interface object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
PersistentAppUI.Builder tags(Consumer<Tag.Builder>... tags)
A collection of tags for the persistent application user interface object.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
-