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
Note:
When making an API call, you may pass LoggingEnabled data as a hash:
{
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
-
#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.
5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-s3/types.rb', line 5082 class LoggingEnabled < Struct.new( :target_bucket, :target_grants, :target_prefix) include Aws::Structure end |
#target_grants ⇒ Array<Types::TargetGrant>
5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-s3/types.rb', line 5082 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.
5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-s3/types.rb', line 5082 class LoggingEnabled < Struct.new( :target_bucket, :target_grants, :target_prefix) include Aws::Structure end |