You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::S3Control::Types::CreateBucketRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateBucketRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  acl: "private", # accepts private, public-read, public-read-write, authenticated-read
  bucket: "BucketName", # required
  create_bucket_configuration: {
    location_constraint: "EU", # accepts EU, eu-west-1, us-west-1, us-west-2, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, sa-east-1, cn-north-1, eu-central-1
  },
  grant_full_control: "GrantFullControl",
  grant_read: "GrantRead",
  grant_read_acp: "GrantReadACP",
  grant_write: "GrantWrite",
  grant_write_acp: "GrantWriteACP",
  object_lock_enabled_for_bucket: false,
  outpost_id: "NonEmptyMaxLength64String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#aclString

The canned ACL to apply to the bucket.

This is not supported by Amazon S3 on Outposts buckets.

Possible values:

  • private
  • public-read
  • public-read-write
  • authenticated-read

Returns:

  • (String)

    The canned ACL to apply to the bucket.

#bucketString

The name of the bucket.

Returns:

  • (String)

    The name of the bucket.

#create_bucket_configurationTypes::CreateBucketConfiguration

The configuration information for the bucket.

This is not supported by Amazon S3 on Outposts buckets.

Returns:

#grant_full_controlString

Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.

This is not supported by Amazon S3 on Outposts buckets.

Returns:

  • (String)

    Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.

#grant_readString

Allows grantee to list the objects in the bucket.

This is not supported by Amazon S3 on Outposts buckets.

Returns:

  • (String)

    Allows grantee to list the objects in the bucket.

#grant_read_acpString

Allows grantee to read the bucket ACL.

This is not supported by Amazon S3 on Outposts buckets.

Returns:

  • (String)

    Allows grantee to read the bucket ACL.

#grant_writeString

Allows grantee to create, overwrite, and delete any object in the bucket.

This is not supported by Amazon S3 on Outposts buckets.

Returns:

  • (String)

    Allows grantee to create, overwrite, and delete any object in the bucket.

#grant_write_acpString

Allows grantee to write the ACL for the applicable bucket.

This is not supported by Amazon S3 on Outposts buckets.

Returns:

  • (String)

    Allows grantee to write the ACL for the applicable bucket.

#object_lock_enabled_for_bucketBoolean

Specifies whether you want S3 Object Lock to be enabled for the new bucket.

This is not supported by Amazon S3 on Outposts buckets.

Returns:

  • (Boolean)

    Specifies whether you want S3 Object Lock to be enabled for the new bucket.

#outpost_idString

The ID of the Outposts where the bucket is being created.

This is required by Amazon S3 on Outposts buckets.

Returns:

  • (String)

    The ID of the Outposts where the bucket is being created.