You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::S3::Types::BucketLoggingStatus

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing BucketLoggingStatus as input to an Aws::Client method, you can use a vanilla 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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#logging_enabledTypes::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 Simple Storage Service API Reference.

Returns:

  • (Types::LoggingEnabled)

    Describes where logs are stored and the prefix that Amazon S3 assigns to all log object keys for a bucket.