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