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