Class: Aws::AccessAnalyzer::Types::S3BucketAclGrantConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AccessAnalyzer::Types::S3BucketAclGrantConfiguration
- Defined in:
- gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb
Overview
Note:
When making an API call, you may pass S3BucketAclGrantConfiguration data as a hash:
{
grantee: { # required
id: "AclCanonicalId",
uri: "AclUri",
},
permission: "READ", # required, accepts READ, WRITE, READ_ACP, WRITE_ACP, FULL_CONTROL
}
A proposed access control list grant configuration for an Amazon S3 bucket. For more information, see How to Specify an ACL.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grantee ⇒ Types::AclGrantee
The grantee to whom you’re assigning access rights.
-
#permission ⇒ String
The permissions being granted.
Instance Attribute Details
#grantee ⇒ Types::AclGrantee
The grantee to whom you’re assigning access rights.
2721 2722 2723 2724 2725 2726 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2721 class S3BucketAclGrantConfiguration < Struct.new( :grantee, :permission) SENSITIVE = [] include Aws::Structure end |
#permission ⇒ String
The permissions being granted.
2721 2722 2723 2724 2725 2726 |
# File 'gems/aws-sdk-accessanalyzer/lib/aws-sdk-accessanalyzer/types.rb', line 2721 class S3BucketAclGrantConfiguration < Struct.new( :grantee, :permission) SENSITIVE = [] include Aws::Structure end |