Class: Aws::S3::Types::TargetObjectKeyFormat
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::TargetObjectKeyFormat
- Includes:
- Aws::Structure
- Defined in:
- 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.
17447 17448 17449 17450 17451 17452 |
# File 'lib/aws-sdk-s3/types.rb', line 17447 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 {}.
17447 17448 17449 17450 17451 17452 |
# File 'lib/aws-sdk-s3/types.rb', line 17447 class TargetObjectKeyFormat < Struct.new( :simple_prefix, :partitioned_prefix) SENSITIVE = [] include Aws::Structure end |