Class: Aws::S3Tables::Types::CreateTableBucketRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_configurationTypes::EncryptionConfiguration

The encryption configuration to use for the table bucket. This configuration specifies the default encryption settings that will be applied to all tables created in this bucket unless overridden at the table level. The configuration includes the encryption algorithm and, if using SSE-KMS, the KMS key to use.



129
130
131
132
133
134
135
136
# File 'lib/aws-sdk-s3tables/types.rb', line 129

class CreateTableBucketRequest < Struct.new(
  :name,
  :encryption_configuration,
  :storage_class_configuration,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name for the table bucket.

Returns:

  • (String)


129
130
131
132
133
134
135
136
# File 'lib/aws-sdk-s3tables/types.rb', line 129

class CreateTableBucketRequest < Struct.new(
  :name,
  :encryption_configuration,
  :storage_class_configuration,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#storage_class_configurationTypes::StorageClassConfiguration

The default storage class configuration for the table bucket. This configuration will be applied to all new tables created in this bucket unless overridden at the table level. If not specified, the service default storage class will be used.



129
130
131
132
133
134
135
136
# File 'lib/aws-sdk-s3tables/types.rb', line 129

class CreateTableBucketRequest < Struct.new(
  :name,
  :encryption_configuration,
  :storage_class_configuration,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

A map of user-defined tags that you would like to apply to the table bucket that you are creating. A tag is a key-value pair that you apply to your resources. Tags can help you organize and control access to resources. For more information, see [Tagging for cost allocation or attribute-based access control (ABAC)].

<note markdown=“1”> You must have the ‘s3tables:TagResource` permission in addition to `s3tables:CreateTableBucket` permisson to create a table bucket with tags.

</note>

[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/tagging.html

Returns:

  • (Hash<String,String>)


129
130
131
132
133
134
135
136
# File 'lib/aws-sdk-s3tables/types.rb', line 129

class CreateTableBucketRequest < Struct.new(
  :name,
  :encryption_configuration,
  :storage_class_configuration,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end