Class: Aws::GuardDuty::Types::BucketPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::BucketPolicy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-guardduty/types.rb
Overview
Contains information on the current bucket policies for the S3 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 a bucket policy.
-
#allows_public_write_access ⇒ Boolean
A value that indicates whether public write access for the bucket is enabled through a bucket policy.
Instance Attribute Details
#allows_public_read_access ⇒ Boolean
A value that indicates whether public read access for the bucket is enabled through a bucket policy.
625 626 627 628 629 630 |
# File 'lib/aws-sdk-guardduty/types.rb', line 625 class BucketPolicy < 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 a bucket policy.
625 626 627 628 629 630 |
# File 'lib/aws-sdk-guardduty/types.rb', line 625 class BucketPolicy < Struct.new( :allows_public_read_access, :allows_public_write_access) SENSITIVE = [] include Aws::Structure end |