Class: Aws::Bedrock::Types::S3Config

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

Overview

S3 configuration for storing log data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

S3 bucket name.

Returns:

  • (String)


6691
6692
6693
6694
6695
6696
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6691

class S3Config < Struct.new(
  :bucket_name,
  :key_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#key_prefixString

S3 prefix.

Returns:

  • (String)


6691
6692
6693
6694
6695
6696
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6691

class S3Config < Struct.new(
  :bucket_name,
  :key_prefix)
  SENSITIVE = []
  include Aws::Structure
end