Interface AssetBundleImportJobThemeOverridePermissions.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AssetBundleImportJobThemeOverridePermissions.Builder,AssetBundleImportJobThemeOverridePermissions>,SdkBuilder<AssetBundleImportJobThemeOverridePermissions.Builder,AssetBundleImportJobThemeOverridePermissions>,SdkPojo
- Enclosing class:
- AssetBundleImportJobThemeOverridePermissions
@Mutable @NotThreadSafe public static interface AssetBundleImportJobThemeOverridePermissions.Builder extends SdkPojo, CopyableBuilder<AssetBundleImportJobThemeOverridePermissions.Builder,AssetBundleImportJobThemeOverridePermissions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AssetBundleImportJobThemeOverridePermissions.Builderpermissions(Consumer<AssetBundleResourcePermissions.Builder> permissions)A list of permissions for the themes that you want to apply overrides to.AssetBundleImportJobThemeOverridePermissions.Builderpermissions(AssetBundleResourcePermissions permissions)A list of permissions for the themes that you want to apply overrides to.AssetBundleImportJobThemeOverridePermissions.BuilderthemeIds(String... themeIds)A list of theme IDs that you want to apply overrides to.AssetBundleImportJobThemeOverridePermissions.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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
themeIds
AssetBundleImportJobThemeOverridePermissions.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
AssetBundleImportJobThemeOverridePermissions.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.
-
permissions
AssetBundleImportJobThemeOverridePermissions.Builder permissions(AssetBundleResourcePermissions permissions)
A list of permissions for the themes that you want to apply overrides to.
- Parameters:
permissions- A list of permissions 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.
-
permissions
default AssetBundleImportJobThemeOverridePermissions.Builder permissions(Consumer<AssetBundleResourcePermissions.Builder> permissions)
A list of permissions for the themes that you want to apply overrides to.
This is a convenience method that creates an instance of theAssetBundleResourcePermissions.Builderavoiding the need to create one manually viaAssetBundleResourcePermissions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed topermissions(AssetBundleResourcePermissions).- Parameters:
permissions- a consumer that will call methods onAssetBundleResourcePermissions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
permissions(AssetBundleResourcePermissions)
-
-