Class: Aws::CloudWatchLogs::Types::S3DeliveryConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb

Overview

This structure contains delivery configurations that apply only when the delivery destination resource is an S3 bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enable_hive_compatible_pathBoolean

This parameter causes the S3 objects that contain delivered logs to use a prefix structure that allows for integration with Apache Hive.

Returns:

  • (Boolean)


4853
4854
4855
4856
4857
4858
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4853

class S3DeliveryConfiguration < Struct.new(
  :suffix_path,
  :enable_hive_compatible_path)
  SENSITIVE = []
  include Aws::Structure
end

#suffix_pathString

This string allows re-configuring the S3 object prefix to contain either static or variable sections. The valid variables to use in the suffix path will vary by each log source. See ConfigurationTemplate$allowedSuffixPathFields for more info on what values are supported in the suffix path for each log source.

Returns:

  • (String)


4853
4854
4855
4856
4857
4858
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4853

class S3DeliveryConfiguration < Struct.new(
  :suffix_path,
  :enable_hive_compatible_path)
  SENSITIVE = []
  include Aws::Structure
end