Class: Aws::CleanRooms::Types::AnalysisLogExportS3OutputConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::AnalysisLogExportS3OutputConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cleanrooms/types.rb
Overview
Contains output information for an analysis log export with an S3 output type.
The exported logs are written under the bucket and key prefix that you specify. The path includes the collaboration ID, the protected query ID, and the analysis log export ID. Because the path includes the export ID, exporting the same query more than once doesn't overwrite the logs from an earlier export.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The S3 bucket that the exported analysis logs are written to.
-
#key_prefix ⇒ String
The S3 key prefix under which the exported analysis logs are written.
Instance Attribute Details
#bucket ⇒ String
The S3 bucket that the exported analysis logs are written to. The bucket must be in the same Amazon Web Services Region as the collaboration.
385 386 387 388 389 390 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 385 class AnalysisLogExportS3OutputConfiguration < Struct.new( :bucket, :key_prefix) SENSITIVE = [] include Aws::Structure end |
#key_prefix ⇒ String
The S3 key prefix under which the exported analysis logs are written.
Only one export can be in progress at a time for a given query and destination. To export the same query twice at once, use a different key prefix for the second export.
385 386 387 388 389 390 |
# File 'lib/aws-sdk-cleanrooms/types.rb', line 385 class AnalysisLogExportS3OutputConfiguration < Struct.new( :bucket, :key_prefix) SENSITIVE = [] include Aws::Structure end |