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.



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_prefixTypes::SimplePrefix

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

Returns:



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