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

Class: Aws::S3::Types::AccessControlPolicy

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

Overview

Note:

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

{
  grants: [
    {
      grantee: {
        display_name: "DisplayName",
        email_address: "EmailAddress",
        id: "ID",
        type: "CanonicalUser", # required, accepts CanonicalUser, AmazonCustomerByEmail, Group
        uri: "URI",
      },
      permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
    },
  ],
  owner: {
    display_name: "DisplayName",
    id: "ID",
  },
}

Contains the elements that set the ACL permissions for an object per grantee.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#grantsArray<Types::Grant>

A list of grants.

Returns:

#ownerTypes::Owner

Container for the bucket owner\'s display name and ID.

Returns:

  • (Types::Owner)

    Container for the bucket owner\'s display name and ID.