Method: Aws::S3Control::Types::CreateBucketRequest#grant_full_control

Defined in:
lib/aws-sdk-s3control/types.rb

#grant_full_controlString

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

<note markdown=“1”> This is not supported by Amazon S3 on Outposts buckets.

</note>

Returns:

  • (String)


1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
# File 'lib/aws-sdk-s3control/types.rb', line 1215

class CreateBucketRequest < Struct.new(
  :acl,
  :bucket,
  :create_bucket_configuration,
  :grant_full_control,
  :grant_read,
  :grant_read_acp,
  :grant_write,
  :grant_write_acp,
  :object_lock_enabled_for_bucket,
  :outpost_id)
  SENSITIVE = []
  include Aws::Structure
end