Interface AssetBundleImportJobThemeOverrideTags.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AssetBundleImportJobThemeOverrideTags.Builder,AssetBundleImportJobThemeOverrideTags>,SdkBuilder<AssetBundleImportJobThemeOverrideTags.Builder,AssetBundleImportJobThemeOverrideTags>,SdkPojo
- Enclosing class:
- AssetBundleImportJobThemeOverrideTags
public static interface AssetBundleImportJobThemeOverrideTags.Builder extends SdkPojo, CopyableBuilder<AssetBundleImportJobThemeOverrideTags.Builder,AssetBundleImportJobThemeOverrideTags>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssetBundleImportJobThemeOverrideTags.Buildertags(Collection<Tag> tags)A list of tags for the themes that you want to apply overrides to.AssetBundleImportJobThemeOverrideTags.Buildertags(Consumer<Tag.Builder>... tags)A list of tags for the themes that you want to apply overrides to.AssetBundleImportJobThemeOverrideTags.Buildertags(Tag... tags)A list of tags for the themes that you want to apply overrides to.AssetBundleImportJobThemeOverrideTags.BuilderthemeIds(String... themeIds)A list of theme IDs that you want to apply overrides to.AssetBundleImportJobThemeOverrideTags.BuilderthemeIds(Collection<String> themeIds)A list of theme IDs that you want to apply overrides to.-
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
-
themeIds
AssetBundleImportJobThemeOverrideTags.Builder themeIds(Collection<String> themeIds)
A list of theme IDs that you want to apply overrides to. You can use
*to override all themes in this asset bundle.- Parameters:
themeIds- A list of theme IDs that you want to apply overrides to. You can use*to override all themes in this asset bundle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
themeIds
AssetBundleImportJobThemeOverrideTags.Builder themeIds(String... themeIds)
A list of theme IDs that you want to apply overrides to. You can use
*to override all themes in this asset bundle.- Parameters:
themeIds- A list of theme IDs that you want to apply overrides to. You can use*to override all themes in this asset bundle.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AssetBundleImportJobThemeOverrideTags.Builder tags(Collection<Tag> tags)
A list of tags for the themes that you want to apply overrides to.
- Parameters:
tags- A list of tags for the themes that you want to apply overrides to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AssetBundleImportJobThemeOverrideTags.Builder tags(Tag... tags)
A list of tags for the themes that you want to apply overrides to.
- Parameters:
tags- A list of tags for the themes that you want to apply overrides to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
AssetBundleImportJobThemeOverrideTags.Builder tags(Consumer<Tag.Builder>... tags)
A list of tags for the themes that you want to apply overrides to.
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)
-
-