Interface AssetBundleImportJobDataSourceOverridePermissions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AssetBundleImportJobDataSourceOverridePermissions.Builder,
,AssetBundleImportJobDataSourceOverridePermissions> SdkBuilder<AssetBundleImportJobDataSourceOverridePermissions.Builder,
,AssetBundleImportJobDataSourceOverridePermissions> SdkPojo
- Enclosing class:
AssetBundleImportJobDataSourceOverridePermissions
public static interface AssetBundleImportJobDataSourceOverridePermissions.Builder
extends SdkPojo, CopyableBuilder<AssetBundleImportJobDataSourceOverridePermissions.Builder,AssetBundleImportJobDataSourceOverridePermissions>
-
Method Summary
Modifier and TypeMethodDescriptiondataSourceIds
(String... dataSourceIds) A list of data source IDs that you want to apply overrides to.dataSourceIds
(Collection<String> dataSourceIds) A list of data source IDs that you want to apply overrides to.permissions
(Consumer<AssetBundleResourcePermissions.Builder> permissions) A list of permissions for the data source that you want to apply overrides to.permissions
(AssetBundleResourcePermissions permissions) A list of permissions 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, sdkFields
-
Method Details
-
dataSourceIds
AssetBundleImportJobDataSourceOverridePermissions.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
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.
-
permissions
AssetBundleImportJobDataSourceOverridePermissions.Builder permissions(AssetBundleResourcePermissions permissions) A list of permissions for the data source that you want to apply overrides to.
- Parameters:
permissions
- A list of permissions 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.
-
permissions
default AssetBundleImportJobDataSourceOverridePermissions.Builder permissions(Consumer<AssetBundleResourcePermissions.Builder> permissions) A list of permissions for the data source that you want to apply overrides to.
This is a convenience method that creates an instance of theAssetBundleResourcePermissions.Builder
avoiding the need to create one manually viaAssetBundleResourcePermissions.builder()
.When the
Consumer
completes,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:
-