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.
16761 16762 16763 16764 16765 16766 |
# File 'lib/aws-sdk-s3/types.rb', line 16761 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 {}.
16761 16762 16763 16764 16765 16766 |
# File 'lib/aws-sdk-s3/types.rb', line 16761 class TargetObjectKeyFormat < Struct.new( :simple_prefix, :partitioned_prefix) SENSITIVE = [] include Aws::Structure end |