Class: Aws::S3::Types::BucketLoggingStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::BucketLoggingStatus
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass BucketLoggingStatus data as a hash:
{
logging_enabled: {
target_bucket: "TargetBucket",
target_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, READ, WRITE
},
],
target_prefix: "TargetPrefix",
},
}
Instance Attribute Summary collapse
Instance Attribute Details
#logging_enabled ⇒ Types::LoggingEnabled
460 461 462 463 |
# File 'lib/aws-sdk-s3/types.rb', line 460 class BucketLoggingStatus < Struct.new( :logging_enabled) include Aws::Structure end |