Class: Aws::CloudWatchEvidently::Types::S3Destination

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

Overview

If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the bucket in which Evidently stores evaluation events.

Returns:

  • (String)


2595
2596
2597
2598
2599
2600
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 2595

class S3Destination < Struct.new(
  :bucket,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end

#prefixString

The bucket prefix in which Evidently stores evaluation events.

Returns:

  • (String)


2595
2596
2597
2598
2599
2600
# File 'gems/aws-sdk-cloudwatchevidently/lib/aws-sdk-cloudwatchevidently/types.rb', line 2595

class S3Destination < Struct.new(
  :bucket,
  :prefix)
  SENSITIVE = []
  include Aws::Structure
end