Class: Aws::Bedrock::Types::InvocationLogSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::InvocationLogSource
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_uri ⇒ String
The URI of an invocation log in a bucket.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3_uri ⇒ String
The URI of an invocation log in a bucket.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
4231 4232 4233 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4231 def unknown @unknown end |