Interface AssetScope.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AssetScope.Builder,AssetScope>,SdkBuilder<AssetScope.Builder,AssetScope>,SdkPojo
- Enclosing class:
- AssetScope
public static interface AssetScope.Builder extends SdkPojo, CopyableBuilder<AssetScope.Builder,AssetScope>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AssetScope.BuilderassetId(String assetId)The asset ID of the asset scope.AssetScope.BuildererrorMessage(String errorMessage)The error message of the asset scope.AssetScope.BuilderfilterIds(String... filterIds)The filter IDs of the asset scope.AssetScope.BuilderfilterIds(Collection<String> filterIds)The filter IDs of the asset scope.AssetScope.Builderstatus(String status)The status of the asset scope.-
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
-
assetId
AssetScope.Builder assetId(String assetId)
The asset ID of the asset scope.
- Parameters:
assetId- The asset ID of the asset scope.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
AssetScope.Builder errorMessage(String errorMessage)
The error message of the asset scope.
- Parameters:
errorMessage- The error message of the asset scope.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filterIds
AssetScope.Builder filterIds(Collection<String> filterIds)
The filter IDs of the asset scope.
- Parameters:
filterIds- The filter IDs of the asset scope.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filterIds
AssetScope.Builder filterIds(String... filterIds)
The filter IDs of the asset scope.
- Parameters:
filterIds- The filter IDs of the asset scope.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
AssetScope.Builder status(String status)
The status of the asset scope.
- Parameters:
status- The status of the asset scope.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-