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",
},
}
Instance Attribute Summary collapse
-
#grants ⇒ Array<Types::Grant>
A list of grants.
- #owner ⇒ Types::Owner
Instance Attribute Details
#grants ⇒ Array<Types::Grant>
A list of grants.
132 133 134 135 136 |
# File 'lib/aws-sdk-s3/types.rb', line 132 class AccessControlPolicy < Struct.new( :grants, :owner) include Aws::Structure end |
#owner ⇒ Types::Owner
132 133 134 135 136 |
# File 'lib/aws-sdk-s3/types.rb', line 132 class AccessControlPolicy < Struct.new( :grants, :owner) include Aws::Structure end |