Interface CreateAssetResponse.Builder
- All Superinterfaces:
AwsResponse.Builder
,Buildable
,CopyableBuilder<CreateAssetResponse.Builder,
,CreateAssetResponse> IoTSiteWiseResponse.Builder
,SdkBuilder<CreateAssetResponse.Builder,
,CreateAssetResponse> SdkPojo
,SdkResponse.Builder
- Enclosing class:
CreateAssetResponse
public static interface CreateAssetResponse.Builder
extends IoTSiteWiseResponse.Builder, SdkPojo, CopyableBuilder<CreateAssetResponse.Builder,CreateAssetResponse>
-
Method Summary
Modifier and TypeMethodDescriptionThe ARN of the asset, which has the following format.The ID of the asset, in UUID format.default CreateAssetResponse.Builder
assetStatus
(Consumer<AssetStatus.Builder> assetStatus) The status of the asset, which contains a state (CREATING
after successfully calling this operation) and any error message.assetStatus
(AssetStatus assetStatus) The status of the asset, which contains a state (CREATING
after successfully calling this operation) and any error message.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.iotsitewise.model.IoTSiteWiseResponse.Builder
build, responseMetadata, responseMetadata
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Method Details
-
assetId
The ID of the asset, in UUID format. This ID uniquely identifies the asset within IoT SiteWise and can be used with other IoT SiteWise API operations.
- Parameters:
assetId
- The ID of the asset, in UUID format. This ID uniquely identifies the asset within IoT SiteWise and can be used with other IoT SiteWise API operations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assetArn
The ARN of the asset, which has the following format.
arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}
- Parameters:
assetArn
- The ARN of the asset, which has the following format.arn:${Partition}:iotsitewise:${Region}:${Account}:asset/${AssetId}
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assetStatus
The status of the asset, which contains a state (
CREATING
after successfully calling this operation) and any error message.- Parameters:
assetStatus
- The status of the asset, which contains a state (CREATING
after successfully calling this operation) and any error message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assetStatus
The status of the asset, which contains a state (
This is a convenience method that creates an instance of theCREATING
after successfully calling this operation) and any error message.AssetStatus.Builder
avoiding the need to create one manually viaAssetStatus.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toassetStatus(AssetStatus)
.- Parameters:
assetStatus
- a consumer that will call methods onAssetStatus.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-