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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


6583
6584
6585
6586
6587
6588
# File 'lib/aws-sdk-bedrock/types.rb', line 6583

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

#key_prefixString

S3 prefix.

Returns:

  • (String)


6583
6584
6585
6586
6587
6588
# File 'lib/aws-sdk-bedrock/types.rb', line 6583

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