Class: Aws::S3::Types::LoggingEnabled
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::LoggingEnabled
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
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
-
#target_bucket ⇒ String
Specifies the bucket where you want Amazon S3 to store server access logs.
- #target_grants ⇒ Array<Types::TargetGrant>
-
#target_prefix ⇒ String
This element lets you specify a prefix for the keys that the log files will be stored under.
Instance Attribute Details
#target_bucket ⇒ String
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.
5143 5144 5145 5146 5147 5148 |
# File 'lib/aws-sdk-s3/types.rb', line 5143 class LoggingEnabled < Struct.new( :target_bucket, :target_grants, :target_prefix) include Aws::Structure end |
#target_grants ⇒ Array<Types::TargetGrant>
5143 5144 5145 5146 5147 5148 |
# File 'lib/aws-sdk-s3/types.rb', line 5143 class LoggingEnabled < Struct.new( :target_bucket, :target_grants, :target_prefix) include Aws::Structure end |
#target_prefix ⇒ String
This element lets you specify a prefix for the keys that the log files will be stored under.
5143 5144 5145 5146 5147 5148 |
# File 'lib/aws-sdk-s3/types.rb', line 5143 class LoggingEnabled < Struct.new( :target_bucket, :target_grants, :target_prefix) include Aws::Structure end |