Storage Lens グループの削除
以下の例は、Amazon S3 コンソール AWS Command Line Interface (AWS CLI)、および AWS SDK for Java を使用して Amazon S3 ストレージレンズグループを削除する方法を示しています。
Storage Lens グループを削除するには
AWS Management Console にサインインし、Amazon S3 コンソール (https://console.aws.amazon.com/s3/
) を開きます。 -
ナビゲーションペインで、[Storage Lens グループ] を選択します。
-
[Storage Lens グループ] で、削除する Storage Lens グループの横にあるオプションボタンを選択します。
-
[削除] を選択します。[Storage Lens グループの削除] ダイアログボックスが表示されます。
-
もう一度 [削除] を選択すると、Storage Lens グループが完全に削除されます。
注記
Storage Lens グループを削除すると、復元することはできません。
以下の AWS CLI 例は、
という名前の Storage Lens グループを削除します。このコマンドの例を実行するには、marketing-department
をユーザー自身の情報に置き換えます。user input
placeholders
aws s3control delete-storage-lens-group --account-id
111122223333
\ --regionus-east-1
--namemarketing-department
以下の AWS SDK for Java 例は、アカウント
で 111122223333
という名前の Storage Lens グループを削除します。この例を実行するには、Marketing-Department
をユーザー自身の情報に置き換えます。user input placeholders
package aws.example.s3control; import com.amazonaws.AmazonServiceException; import com.amazonaws.SdkClientException; import software.amazon.awssdk.auth.credentials.ProfileCredentialsProvider; import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.s3control.S3ControlClient; import software.amazon.awssdk.services.s3control.model.DeleteStorageLensGroupRequest; public class DeleteStorageLensGroup { public static void main(String[] args) { String storageLensGroupName = "
Marketing-Department
"; String accountId = "111122223333
"; try { DeleteStorageLensGroupRequest deleteStorageLensGroupRequest = DeleteStorageLensGroupRequest.builder() .name(storageLensGroupName) .accountId(accountId
).build(); S3ControlClient s3ControlClient = S3ControlClient.builder() .region(Region.US_WEST_2
) .credentialsProvider(ProfileCredentialsProvider.create()) .build(); s3ControlClient.deleteStorageLensGroup(deleteStorageLensGroupRequest); } catch (AmazonServiceException e) { // The call was transmitted successfully, but Amazon S3 couldn't process // it and returned an error response. e.printStackTrace(); } catch (SdkClientException e) { // Amazon S3 couldn't be contacted for a response, or the client // couldn't parse the response from Amazon S3. e.printStackTrace(); } } }