Class: Aws::NovaAct::Types::ToolInputSchema
- Inherits:
-
Struct
- Object
- Struct
- Aws::NovaAct::Types::ToolInputSchema
- Defined in:
- gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb
Overview
Note:
ToolInputSchema is a union - when making an API calls you must set exactly one of the members.
The schema definition for tool input parameters.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#json ⇒ Hash, ...
The JSON schema that defines the expected input format for the tool.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#json ⇒ Hash, ...
The JSON schema that defines the expected input format for the tool.
1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 1072 class ToolInputSchema < Struct.new( :json, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Json < ToolInputSchema; end class Unknown < ToolInputSchema; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1072 1073 1074 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 1072 def unknown @unknown end |