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)


2981
2982
2983
2984
2985
2986
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 2981

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

#key_prefixString

S3 prefix.

Returns:

  • (String)


2981
2982
2983
2984
2985
2986
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 2981

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