Class: Aws::BedrockAgent::Types::APISchema
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::APISchema
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
Note:
APISchema is a union - when making an API calls you must set exactly one of the members.
Note:
APISchema is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of APISchema corresponding to the set member.
Contains information about the API Schema for the Action Group
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[:payload]
Instance Attribute Summary collapse
-
#payload ⇒ String
String OpenAPI Payload.
-
#s3 ⇒ Types::S3Identifier
The identifier for the S3 resource.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#payload ⇒ String
String OpenAPI Payload
29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 29 class APISchema < Struct.new( :s3, :payload, :unknown) SENSITIVE = [:payload] include Aws::Structure include Aws::Structure::Union class S3 < APISchema; end class Payload < APISchema; end class Unknown < APISchema; end end |
#s3 ⇒ Types::S3Identifier
The identifier for the S3 resource.
29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 29 class APISchema < Struct.new( :s3, :payload, :unknown) SENSITIVE = [:payload] include Aws::Structure include Aws::Structure::Union class S3 < APISchema; end class Payload < APISchema; end class Unknown < APISchema; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
29 30 31 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 29 def unknown @unknown end |