Learn R Programming

paws.storage (version 0.1.12)

s3control_list_storage_lens_configurations: Gets a list of Amazon S3 Storage Lens configurations

Description

Gets a list of Amazon S3 Storage Lens configurations. For more information about S3 Storage Lens, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:ListStorageLensConfigurations action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

Usage

s3control_list_storage_lens_configurations(AccountId, NextToken)

Value

A list with the following syntax:

list(
  NextToken = "string",
  StorageLensConfigurationList = list(
    list(
      Id = "string",
      StorageLensArn = "string",
      HomeRegion = "string",
      IsEnabled = TRUE|FALSE
    )
  )
)

Arguments

AccountId

[required] The account ID of the requester.

NextToken

A pagination token to request the next page of results.

Request syntax

svc$list_storage_lens_configurations(
  AccountId = "string",
  NextToken = "string"
)