Class: Aws::S3::Types::GetBucketMetadataTableConfigurationResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::GetBucketMetadataTableConfigurationResult
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
The V1 S3 Metadata configuration for a general purpose bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error ⇒ Types::ErrorDetails
If the
CreateBucketMetadataTableConfiguration
request succeeds, but S3 Metadata was unable to create the table, this structure contains the error code and error message. -
#metadata_table_configuration_result ⇒ Types::MetadataTableConfigurationResult
The V1 S3 Metadata configuration for a general purpose bucket.
-
#status ⇒ String
The status of the metadata table.
Instance Attribute Details
#error ⇒ Types::ErrorDetails
If the CreateBucketMetadataTableConfiguration
request succeeds,
but S3 Metadata was unable to create the table, this structure
contains the error code and error message.
6963 6964 6965 6966 6967 6968 6969 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 6963 class GetBucketMetadataTableConfigurationResult < Struct.new( :metadata_table_configuration_result, :status, :error) SENSITIVE = [] include Aws::Structure end |
#metadata_table_configuration_result ⇒ Types::MetadataTableConfigurationResult
The V1 S3 Metadata configuration for a general purpose bucket.
6963 6964 6965 6966 6967 6968 6969 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 6963 class GetBucketMetadataTableConfigurationResult < Struct.new( :metadata_table_configuration_result, :status, :error) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the metadata table. The status values are:
CREATING
- The metadata table is in the process of being created in the specified table bucket.ACTIVE
- The metadata table has been created successfully, and records are being delivered to the table.FAILED
- Amazon S3 is unable to create the metadata table, or Amazon S3 is unable to deliver records. SeeErrorDetails
for details.
6963 6964 6965 6966 6967 6968 6969 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 6963 class GetBucketMetadataTableConfigurationResult < Struct.new( :metadata_table_configuration_result, :status, :error) SENSITIVE = [] include Aws::Structure end |