Class: Aws::CleanRooms::Types::AnalysisLogExportS3OutputConfiguration

Inherits:
Struct
  • Object
show all
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.

The exported logs are encrypted using the default encryption configuration of the destination bucket. Clean Rooms doesn't accept a KMS key for log export. To encrypt the exported logs with a customer managed key, configure the bucket's default encryption to use that key before you export.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

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.

Returns:

  • (String)


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_prefixString

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.

Returns:

  • (String)


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