Class: Aws::S3::Types::LoggingEnabled

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass LoggingEnabled data as a hash:

{
  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 information. Presence of this element indicates that logging is enabled. Parameters TargetBucket and TargetPrefix are required in this case.

Instance Attribute Summary collapse

Instance Attribute Details

#target_bucketString

Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case you should choose a different TargetPrefix for each source bucket so that the delivered log files can be distinguished by key.

Returns:

  • (String)


5571
5572
5573
5574
5575
5576
# File 'lib/aws-sdk-s3/types.rb', line 5571

class LoggingEnabled < Struct.new(
  :target_bucket,
  :target_grants,
  :target_prefix)
  include Aws::Structure
end

#target_grantsArray<Types::TargetGrant>

Returns:



5571
5572
5573
5574
5575
5576
# File 'lib/aws-sdk-s3/types.rb', line 5571

class LoggingEnabled < Struct.new(
  :target_bucket,
  :target_grants,
  :target_prefix)
  include Aws::Structure
end

#target_prefixString

This element lets you specify a prefix for the keys that the log files will be stored under.

Returns:

  • (String)


5571
5572
5573
5574
5575
5576
# File 'lib/aws-sdk-s3/types.rb', line 5571

class LoggingEnabled < Struct.new(
  :target_bucket,
  :target_grants,
  :target_prefix)
  include Aws::Structure
end