Storage Lens 그룹 삭제
다음 예제는 Amazon S3 콘솔, AWS Command Line Interface(AWS CLI) 및 AWS SDK for Java을 사용하여 Amazon S3 Storage Lens 그룹을 삭제하는 방법을 보여줍니다.
Storage Lens 그룹을 삭제하려면
AWS Management Console에 로그인한 후 https://console.aws.amazon.com/s3/
에서 Amazon S3 콘솔을 엽니다. -
왼쪽 탐색 창에서 스토리지 렌즈 그룹을 선택합니다.
-
Storage Lens 그룹에서 삭제할 Storage Lens 그룹 옆에 있는 옵션 버튼을 선택합니다.
-
Delete(삭제)를 선택합니다. 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(); } } }