Class: Aws::S3::Types::ListBucketAnalyticsConfigurationsRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass ListBucketAnalyticsConfigurationsRequest data as a hash:

{
  bucket: "BucketName", # required
  continuation_token: "Token",
}

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the bucket from which analytics configurations are retrieved.

Returns:

  • (String)


4710
4711
4712
4713
4714
# File 'lib/aws-sdk-s3/types.rb', line 4710

class ListBucketAnalyticsConfigurationsRequest < Struct.new(
  :bucket,
  :continuation_token)
  include Aws::Structure
end

#continuation_tokenString

The ContinuationToken that represents a placeholder from where this request should begin.

Returns:

  • (String)


4710
4711
4712
4713
4714
# File 'lib/aws-sdk-s3/types.rb', line 4710

class ListBucketAnalyticsConfigurationsRequest < Struct.new(
  :bucket,
  :continuation_token)
  include Aws::Structure
end