Class: Aws::S3::Types::BucketLoggingStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::BucketLoggingStatus
- Defined in:
- gems/aws-sdk-s3/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", # required
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", # required
},
}
Container for logging status information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#logging_enabled ⇒ Types::LoggingEnabled
Describes where logs are stored and the prefix that Amazon S3 assigns to all log object keys for a bucket.
Instance Attribute Details
#logging_enabled ⇒ Types::LoggingEnabled
Describes where logs are stored and the prefix that Amazon S3 assigns to all log object keys for a bucket. For more information, see PUT Bucket logging in the Amazon S3 API Reference.
608 609 610 611 612 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 608 class BucketLoggingStatus < Struct.new( :logging_enabled) SENSITIVE = [] include Aws::Structure end |