Class: Aws::S3::Types::AccessControlPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AccessControlPolicy
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass AccessControlPolicy data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grants ⇒ Array<Types::Grant>
A list of grants.
-
#owner ⇒ Types::Owner
Container for the bucket owner’s display name and ID.
Instance Attribute Details
#grants ⇒ Array<Types::Grant>
A list of grants.
194 195 196 197 198 199 |
# File 'lib/aws-sdk-s3/types.rb', line 194 class AccessControlPolicy < Struct.new( :grants, :owner) SENSITIVE = [] include Aws::Structure end |
#owner ⇒ Types::Owner
Container for the bucket owner’s display name and ID.
194 195 196 197 198 199 |
# File 'lib/aws-sdk-s3/types.rb', line 194 class AccessControlPolicy < Struct.new( :grants, :owner) SENSITIVE = [] include Aws::Structure end |