文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
DeleteAssetModel
搭配 a AWS SDK 或 CLI 使用
下列程式碼範例示範如何使用 DeleteAssetModel
。
- CLI
-
- AWS CLI
-
若要刪除資產模型
下列
delete-asset-model
範例會刪除風力發電機資產模型。aws iotsitewise delete-asset-model \ --asset-model-id
a1b2c3d4-5678-90ab-cdef-11111EXAMPLE
輸出:
{ "assetModelStatus": { "state": "DELETING" } }
如需詳細資訊,請參閱 AWS IoT SiteWise Word 使用者指南中的刪除資產模型。
-
如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 DeleteAssetModel
。
-
- Java
-
- Java 2.x 的 SDK
-
注意
還有更多 on GitHub。尋找完整範例,並了解如何在 AWS 程式碼範例儲存庫
中設定和執行。 /** * Deletes an Asset Model with the specified ID. * * @param assetModelId the ID of the Asset Model to delete. * @return a {@link CompletableFuture} that represents a {@link DeleteAssetModelResponse} result. The calling code * can attach callbacks, then handle the result or exception by calling {@link CompletableFuture#join()} or * {@link CompletableFuture#get()}. * <p> * If any completion stage in this method throws an exception, the method logs the exception cause and keeps * it available to the calling code as a {@link CompletionException}. By calling * {@link CompletionException#getCause()}, the calling code can access the original exception. */ public CompletableFuture<DeleteAssetModelResponse> deleteAssetModelAsync(String assetModelId) { DeleteAssetModelRequest deleteAssetModelRequest = DeleteAssetModelRequest.builder() .assetModelId(assetModelId) .build(); return getAsyncClient().deleteAssetModel(deleteAssetModelRequest) .whenComplete((response, exception) -> { if (exception != null) { logger.error("Failed to delete asset model with ID:{}.", exception.getMessage()); } }); }
-
如需 API 詳細資訊,請參閱 DeleteAssetModel AWS SDK for Java 2.x 參考中的 API。
-
DeleteAsset
DeleteGateway