Class: Aws::S3::Types::TargetObjectKeyFormat
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::TargetObjectKeyFormat
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Amazon S3 key format for log objects. Only one format, PartitionedPrefix or SimplePrefix, is allowed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#partitioned_prefix ⇒ Types::PartitionedPrefix
Partitioned S3 key for log objects.
-
#simple_prefix ⇒ Types::SimplePrefix
To use the simple format for S3 keys for log objects.
Instance Attribute Details
#partitioned_prefix ⇒ Types::PartitionedPrefix
Partitioned S3 key for log objects.
17728 17729 17730 17731 17732 17733 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 17728 class TargetObjectKeyFormat < Struct.new( :simple_prefix, :partitioned_prefix) SENSITIVE = [] include Aws::Structure end |
#simple_prefix ⇒ Types::SimplePrefix
To use the simple format for S3 keys for log objects. To specify SimplePrefix format, set SimplePrefix to {}.
17728 17729 17730 17731 17732 17733 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 17728 class TargetObjectKeyFormat < Struct.new( :simple_prefix, :partitioned_prefix) SENSITIVE = [] include Aws::Structure end |