Class: Aws::Bedrock::Types::InvocationLogSource

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

Overview

Note:

InvocationLogSource is a union - when making an API calls you must set exactly one of the members.

Note:

InvocationLogSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InvocationLogSource corresponding to the set member.

A storage location for invocation logs.

Direct Known Subclasses

S3Uri, Unknown

Defined Under Namespace

Classes: S3Uri, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_uriString

The URI of an invocation log in a bucket.

Returns:

  • (String)


4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4231

class InvocationLogSource < Struct.new(
  :s3_uri,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3Uri < InvocationLogSource; end
  class Unknown < InvocationLogSource; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4231
4232
4233
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4231

def unknown
  @unknown
end