Class: Aws::Pipes::Types::S3LogDestinationParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::S3LogDestinationParameters
- 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
-
#bucket_name ⇒ String
Specifies the name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
-
#bucket_owner ⇒ String
Specifies the Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
-
#output_format ⇒ String
How EventBridge should format the log records.
-
#prefix ⇒ String
Specifies any prefix text with which to begin Amazon S3 log object names.
Instance Attribute Details
#bucket_name ⇒ String
Specifies the name of the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
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_owner ⇒ String
Specifies the Amazon Web Services account that owns the Amazon S3 bucket to which EventBridge delivers the log records for the pipe.
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_format ⇒ String
How EventBridge should format the log records.
EventBridge currently only supports ‘json` formatting.
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 |
#prefix ⇒ String
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
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 |