Class: Aws::Pipes::Types::S3LogDestinationParameters

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pipes/types.rb

Overview

The Amazon S3 logging configuration settings for the pipe.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Specifies the name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.

Returns:

  • (String)


2885
2886
2887
2888
2889
2890
2891
2892
# File 'lib/aws-sdk-pipes/types.rb', line 2885

class S3LogDestinationParameters < Struct.new(
  :bucket_name,
  :bucket_owner,
  :output_format,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#bucket_ownerString

Specifies the Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.

Returns:

  • (String)


2885
2886
2887
2888
2889
2890
2891
2892
# File 'lib/aws-sdk-pipes/types.rb', line 2885

class S3LogDestinationParameters < Struct.new(
  :bucket_name,
  :bucket_owner,
  :output_format,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#output_formatString

How EventBridge should format the log records.

EventBridge currently only supports ‘json` formatting.

Returns:

  • (String)


2885
2886
2887
2888
2889
2890
2891
2892
# File 'lib/aws-sdk-pipes/types.rb', line 2885

class S3LogDestinationParameters < Struct.new(
  :bucket_name,
  :bucket_owner,
  :output_format,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#prefixString

Specifies any prefix text with which to begin Amazon S3 log object names.

You can use prefixes to organize the data that you store in Amazon S3 buckets. A prefix is a string of characters at the beginning of the object key name. A prefix can be any length, subject to the maximum length of the object key name (1,024 bytes). For more information, see [Organizing objects using prefixes] in the *Amazon Simple Storage Service User Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html

Returns:

  • (String)


2885
2886
2887
2888
2889
2890
2891
2892
# File 'lib/aws-sdk-pipes/types.rb', line 2885

class S3LogDestinationParameters < Struct.new(
  :bucket_name,
  :bucket_owner,
  :output_format,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end