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