Class: Aws::S3::Types::ListBucketAnalyticsConfigurationsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::ListBucketAnalyticsConfigurationsOutput
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analytics_configuration_list ⇒ Array<Types::AnalyticsConfiguration>
The list of analytics configurations for a bucket.
-
#continuation_token ⇒ String
The marker that is used as a starting point for this analytics configuration list response.
-
#is_truncated ⇒ Boolean
Indicates whether the returned list of analytics configurations is complete.
-
#next_continuation_token ⇒ String
NextContinuationToken
is sent whenisTruncated
is true, which indicates that there are more analytics configurations to list.
Instance Attribute Details
#analytics_configuration_list ⇒ Array<Types::AnalyticsConfiguration>
The list of analytics configurations for a bucket.
9591 9592 9593 9594 9595 9596 9597 9598 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9591 class ListBucketAnalyticsConfigurationsOutput < Struct.new( :is_truncated, :continuation_token, :next_continuation_token, :analytics_configuration_list) SENSITIVE = [] include Aws::Structure end |
#continuation_token ⇒ String
The marker that is used as a starting point for this analytics configuration list response. This value is present if it was sent in the request.
9591 9592 9593 9594 9595 9596 9597 9598 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9591 class ListBucketAnalyticsConfigurationsOutput < Struct.new( :is_truncated, :continuation_token, :next_continuation_token, :analytics_configuration_list) SENSITIVE = [] include Aws::Structure end |
#is_truncated ⇒ Boolean
Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.
9591 9592 9593 9594 9595 9596 9597 9598 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9591 class ListBucketAnalyticsConfigurationsOutput < Struct.new( :is_truncated, :continuation_token, :next_continuation_token, :analytics_configuration_list) SENSITIVE = [] include Aws::Structure end |
#next_continuation_token ⇒ String
NextContinuationToken
is sent when isTruncated
is true, which
indicates that there are more analytics configurations to list. The
next request must include this NextContinuationToken
. The token is
obfuscated and is not a usable value.
9591 9592 9593 9594 9595 9596 9597 9598 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 9591 class ListBucketAnalyticsConfigurationsOutput < Struct.new( :is_truncated, :continuation_token, :next_continuation_token, :analytics_configuration_list) SENSITIVE = [] include Aws::Structure end |