Module: Aws::NovaAct::Types
- Defined in:
- gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb
Defined Under Namespace
Classes: AccessDeniedException, ActError, ActSummary, Call, CallResult, CallResultContent, ClientInfo, CompatibilityInformation, ConflictException, CreateActRequest, CreateActResponse, CreateSessionRequest, CreateSessionResponse, CreateWorkflowDefinitionRequest, CreateWorkflowDefinitionResponse, CreateWorkflowRunRequest, CreateWorkflowRunResponse, DeleteWorkflowDefinitionRequest, DeleteWorkflowDefinitionResponse, DeleteWorkflowRunRequest, DeleteWorkflowRunResponse, GetWorkflowDefinitionRequest, GetWorkflowDefinitionResponse, GetWorkflowRunRequest, GetWorkflowRunResponse, InternalServerException, InvokeActStepRequest, InvokeActStepResponse, ListActsRequest, ListActsResponse, ListModelsRequest, ListModelsResponse, ListSessionsRequest, ListSessionsResponse, ListWorkflowDefinitionsRequest, ListWorkflowDefinitionsResponse, ListWorkflowRunsRequest, ListWorkflowRunsResponse, ModelAlias, ModelLifecycle, ModelSummary, ResourceNotFoundException, ServiceQuotaExceededException, SessionSummary, ThrottlingException, ToolInputSchema, ToolSpec, TraceLocation, UpdateActRequest, UpdateActResponse, UpdateWorkflowRunRequest, UpdateWorkflowRunResponse, ValidationException, ValidationExceptionField, WorkflowDefinitionSummary, WorkflowExportConfig, WorkflowRunSummary
Instance Attribute Summary collapse
-
#json ⇒ Hash, ...
The JSON schema that defines the expected input format for the tool.
-
#text ⇒ String
Text content returned from the tool execution.
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 |
#text ⇒ String
Text content returned from the tool execution.
150 151 152 153 154 155 156 157 158 159 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 150 class CallResultContent < Struct.new( :text, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Text < CallResultContent; end class Unknown < CallResultContent; end end |