Class: Aws::QConnect::Types::CreateAIAgentVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QConnect::Types::CreateAIAgentVersionRequest
- Defined in:
- gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ai_agent_id ⇒ String
The identifier of the Amazon Q in Connect AI Agent.
-
#assistant_id ⇒ String
The identifier of the Amazon Q in Connect assistant.
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#modified_time ⇒ Time
The modification time of the AI Agent should be tracked for version creation.
Instance Attribute Details
#ai_agent_id ⇒ String
The identifier of the Amazon Q in Connect AI Agent.
2001 2002 2003 2004 2005 2006 2007 2008 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2001 class CreateAIAgentVersionRequest < Struct.new( :ai_agent_id, :assistant_id, :client_token, :modified_time) SENSITIVE = [] include Aws::Structure end |
#assistant_id ⇒ String
The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
2001 2002 2003 2004 2005 2006 2007 2008 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2001 class CreateAIAgentVersionRequest < Struct.new( :ai_agent_id, :assistant_id, :client_token, :modified_time) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs..
A suitable default value is auto-generated. You should normally not need to pass this option.
2001 2002 2003 2004 2005 2006 2007 2008 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2001 class CreateAIAgentVersionRequest < Struct.new( :ai_agent_id, :assistant_id, :client_token, :modified_time) SENSITIVE = [] include Aws::Structure end |
#modified_time ⇒ Time
The modification time of the AI Agent should be tracked for version creation. This field should be specified to avoid version creation when simultaneous update to the underlying AI Agent are possible. The value should be the modifiedTime returned from the request to create or update an AI Agent so that version creation can fail if an update to the AI Agent post the specified modification time has been made.
2001 2002 2003 2004 2005 2006 2007 2008 |
# File 'gems/aws-sdk-qconnect/lib/aws-sdk-qconnect/types.rb', line 2001 class CreateAIAgentVersionRequest < Struct.new( :ai_agent_id, :assistant_id, :client_token, :modified_time) SENSITIVE = [] include Aws::Structure end |