Class: Aws::GuardDuty::Types::AccessControlList
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::AccessControlList
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Contains information on the current access control policies for the bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allows_public_read_access ⇒ Boolean
A value that indicates whether public read access for the bucket is enabled through an Access Control List (ACL).
-
#allows_public_write_access ⇒ Boolean
A value that indicates whether public write access for the bucket is enabled through an Access Control List (ACL).
Instance Attribute Details
#allows_public_read_access ⇒ Boolean
A value that indicates whether public read access for the bucket is enabled through an Access Control List (ACL).
91 92 93 94 95 96 |
# File 'lib/aws-sdk-guardduty/types.rb', line 91 class AccessControlList < Struct.new( :allows_public_read_access, :allows_public_write_access) SENSITIVE = [] include Aws::Structure end |
#allows_public_write_access ⇒ Boolean
A value that indicates whether public write access for the bucket is enabled through an Access Control List (ACL).
91 92 93 94 95 96 |
# File 'lib/aws-sdk-guardduty/types.rb', line 91 class AccessControlList < Struct.new( :allows_public_read_access, :allows_public_write_access) SENSITIVE = [] include Aws::Structure end |