Class: Aws::S3::Types::TargetObjectKeyFormat

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#partitioned_prefixTypes::PartitionedPrefix

Partitioned S3 key for log objects.



16141
16142
16143
16144
16145
16146
# File 'lib/aws-sdk-s3/types.rb', line 16141

class TargetObjectKeyFormat < Struct.new(
  :simple_prefix,
  :partitioned_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#simple_prefixTypes::SimplePrefix

To use the simple format for S3 keys for log objects. To specify SimplePrefix format, set SimplePrefix to {\}.

Returns:



16141
16142
16143
16144
16145
16146
# File 'lib/aws-sdk-s3/types.rb', line 16141

class TargetObjectKeyFormat < Struct.new(
  :simple_prefix,
  :partitioned_prefix)
  SENSITIVE = []
  include Aws::Structure
end