Class: Aws::BedrockAgent::Client

Inherits:
Seahorse::Client::Base show all
Includes:
ClientStubs
Defined in:
gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb

Overview

An API client for BedrockAgent. To construct a client, you need to configure a :region and :credentials.

client = Aws::BedrockAgent::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

For details on configuring region and credentials see the developer guide.

See #initialize for a full list of supported configuration options.

Instance Attribute Summary

Attributes inherited from Seahorse::Client::Base

#config, #handlers

API Operations collapse

Instance Method Summary collapse

Methods included from ClientStubs

#api_requests, #stub_data, #stub_responses

Methods inherited from Seahorse::Client::Base

add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins

Methods included from Seahorse::Client::HandlerBuilder

#handle, #handle_request, #handle_response

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :plugins (Array<Seahorse::Client::Plugin>) — default: []] —

    A list of plugins to apply to the client. Each plugin is either a class name or an instance of a plugin class.

  • :credentials (required, Aws::CredentialProvider) —

    Your AWS credentials used for authentication. This can be any class that includes and implements Aws::CredentialProvider, or instance of any one of the following classes:

    • Aws::Credentials - Used for configuring static, non-refreshing credentials.

    • Aws::SharedCredentials - Used for loading static credentials from a shared file, such as ~/.aws/config.

    • Aws::AssumeRoleCredentials - Used when you need to assume a role.

    • Aws::AssumeRoleWebIdentityCredentials - Used when you need to assume a role after providing credentials via the web.

    • Aws::SSOCredentials - Used for loading credentials from AWS SSO using an access token generated from aws login.

    • Aws::ProcessCredentials - Used for loading credentials from a process that outputs to stdout.

    • Aws::InstanceProfileCredentials - Used for loading credentials from an EC2 IMDS on an EC2 instance.

    • Aws::ECSCredentials - Used for loading credentials from instances running in ECS.

    • Aws::CognitoIdentityCredentials - Used for loading credentials from the Cognito Identity service.

    When :credentials are not configured directly, the following locations will be searched for credentials:

    • Aws.config[:credentials]

    • The :access_key_id, :secret_access_key, :session_token, and :account_id options.

    • ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'], ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID'].

    • ~/.aws/credentials

    • ~/.aws/config

    • EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive. Construct and pass an instance of Aws::InstanceProfileCredentials or Aws::ECSCredentials to enable retries and extended timeouts. Instance profile credential fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED'] to true.

  • :region (required, String) —

    The AWS region to connect to. The configured :region is used to determine the service :endpoint. When not passed, a default :region is searched for in the following locations:

    • Aws.config[:region]
    • ENV['AWS_REGION']
    • ENV['AMAZON_REGION']
    • ENV['AWS_DEFAULT_REGION']
    • ~/.aws/credentials
    • ~/.aws/config
  • :access_key_id (String)
  • :account_id (String)
  • :active_endpoint_cache (Boolean) — default: false —

    When set to true, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to false.

  • :adaptive_retry_wait_to_fill (Boolean) — default: true —

    Used only in adaptive retry mode. When true, the request will sleep until there is sufficent client side capacity to retry the request. When false, the request will raise a RetryCapacityNotAvailableError and will not retry instead of sleeping.

  • :auth_scheme_preference (Array<String>) —

    A list of preferred authentication schemes to use when making a request. Supported values are: sigv4, sigv4a, httpBearerAuth, and noAuth. When set using ENV['AWS_AUTH_SCHEME_PREFERENCE'] or in shared config as auth_scheme_preference, the value should be a comma-separated list.

  • :client_side_monitoring (Boolean) — default: false —

    When true, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: "" —

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_host (String) — default: "127.0.0.1" —

    Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_port (Integer) — default: 31000 —

    Required for publishing client metrics. The port that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher —

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true —

    When true, an attempt is made to coerce request parameters into the required types.

  • :correct_clock_skew (Boolean) — default: true —

    Used only in standard and adaptive retry modes. Specifies whether to apply a clock skew correction and retry requests with skewed client clocks.

  • :defaults_mode (String) — default: "legacy" —

    See DefaultsModeConfiguration for a list of the accepted modes and the configuration defaults that are included.

  • :disable_host_prefix_injection (Boolean) — default: false —

    When true, the SDK will not prepend the modeled host prefix to the endpoint.

  • :disable_request_compression (Boolean) — default: false —

    When set to 'true' the request body will not be compressed for supported operations.

  • :endpoint (String, URI::HTTPS, URI::HTTP) —

    Normally you should not configure the :endpoint option directly. This is normally constructed from the :region option. Configuring :endpoint is normally reserved for connecting to test or custom endpoints. The endpoint should be a URI formatted like:

    'http://example.com'
    'https://example.com'
    'http://example.com:123'
    
  • :endpoint_cache_max_entries (Integer) — default: 1000 —

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10 —

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 60 —

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec.

  • :endpoint_discovery (Boolean) — default: false —

    When set to true, endpoint discovery will be enabled for operations when available.

  • :ignore_configured_endpoint_urls (Boolean) —

    Setting to true disables use of endpoint URLs provided via environment variables and the shared configuration file.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default —

    The log formatter.

  • :log_level (Symbol) — default: :info —

    The log level to send messages to the :logger at.

  • :logger (Logger) —

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :max_attempts (Integer) — default: 3 —

    An integer representing the maximum number attempts that will be made for a single request, including the initial attempt. For example, setting this value to 5 will result in a request being retried up to 4 times. Used in standard and adaptive retry modes.

  • :profile (String) — default: "default" —

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, 'default' is used.

  • :request_checksum_calculation (String) — default: "when_supported" —

    Determines when a checksum will be calculated for request payloads. Values are:

    • when_supported - (default) When set, a checksum will be calculated for all request payloads of operations modeled with the httpChecksum trait where requestChecksumRequired is true and/or a requestAlgorithmMember is modeled.
    • when_required - When set, a checksum will only be calculated for request payloads of operations modeled with the httpChecksum trait where requestChecksumRequired is true or where a requestAlgorithmMember is modeled and supplied.
  • :request_min_compression_size_bytes (Integer) — default: 10240 —

    The minimum size in bytes that triggers compression for request bodies. The value must be non-negative integer value between 0 and 10485780 bytes inclusive.

  • :response_checksum_validation (String) — default: "when_supported" —

    Determines when checksum validation will be performed on response payloads. Values are:

    • when_supported - (default) When set, checksum validation is performed on all response payloads of operations modeled with the httpChecksum trait where responseAlgorithms is modeled, except when no modeled checksum algorithms are supported.
    • when_required - When set, checksum validation is not performed on response payloads of operations unless the checksum algorithm is supported and the requestValidationModeMember member is set to ENABLED.
  • :retry_backoff (Proc) —

    A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. This option is only used in the legacy retry mode.

  • :retry_base_delay (Float) — default: 0.3 —

    The base delay in seconds used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_jitter (Symbol) — default: :none —

    A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number. This option is only used in the legacy retry mode.

    @see https://www.awsarchitectureblog.com/2015/03/backoff.html

  • :retry_limit (Integer) — default: 3 —

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors, auth errors, endpoint discovery, and errors from expired credentials. This option is only used in the legacy retry mode.

  • :retry_max_delay (Integer) — default: 0 —

    The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function. This option is only used in the legacy retry mode.

  • :retry_mode (String) — default: "legacy" —

    Specifies which retry algorithm to use. Values are:

    • legacy - The pre-existing retry behavior. This is the default value if no retry mode is provided.

    • standard - A standardized set of retry rules across the AWS SDKs. This includes support for retry quotas, which limit the number of unsuccessful retries a client can make.

    • adaptive - A retry mode that includes all the functionality of standard mode along with automatic client side throttling.

  • :sdk_ua_app_id (String) —

    A unique and opaque application ID that is appended to the User-Agent header as app/sdk_ua_app_id. It should have a maximum length of 50. This variable is sourced from environment variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.

  • :secret_access_key (String)
  • :session_token (String)
  • :sigv4a_signing_region_set (Array) —

    A list of regions that should be signed with SigV4a signing. When not passed, a default :sigv4a_signing_region_set is searched for in the following locations:

    • Aws.config[:sigv4a_signing_region_set]
    • ENV['AWS_SIGV4A_SIGNING_REGION_SET']
    • ~/.aws/config
  • :stub_responses (Boolean) — default: false —

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling ClientStubs#stub_responses. See ClientStubs for more information.

    Please note When response stubbing is enabled, no HTTP requests are made, and retries are disabled.

  • :telemetry_provider (Aws::Telemetry::TelemetryProviderBase) — default: Aws::Telemetry::NoOpTelemetryProvider —

    Allows you to provide a telemetry provider, which is used to emit telemetry data. By default, uses NoOpTelemetryProvider which will not record or emit any telemetry data. The SDK supports the following telemetry providers:

    • OpenTelemetry (OTel) - To use the OTel provider, install and require the opentelemetry-sdk gem and then, pass in an instance of a Aws::Telemetry::OTelProvider for telemetry provider.
  • :token_provider (Aws::TokenProvider) —

    Your Bearer token used for authentication. This can be any class that includes and implements Aws::TokenProvider, or instance of any one of the following classes:

    • Aws::StaticTokenProvider - Used for configuring static, non-refreshing tokens.

    • Aws::SSOTokenProvider - Used for loading tokens from AWS SSO using an access token generated from aws login.

    When :token_provider is not configured directly, the Aws::TokenProviderChain will be used to search for tokens configured for your profile in shared configuration files.

  • :use_dualstack_endpoint (Boolean) —

    When set to true, dualstack enabled endpoints (with .aws TLD) will be used if available.

  • :use_fips_endpoint (Boolean) —

    When set to true, fips compatible endpoints will be used if available. When a fips region is used, the region is normalized and this config is set to true.

  • :validate_params (Boolean) — default: true —

    When true, request parameters are validated before sending the request.

  • :endpoint_provider (Aws::BedrockAgent::EndpointProvider) —

    The endpoint provider used to resolve endpoints. Any object that responds to #resolve_endpoint(parameters) where parameters is a Struct similar to Aws::BedrockAgent::EndpointParameters.

  • :http_continue_timeout (Float) — default: 1 —

    The number of seconds to wait for a 100-continue response before sending the request body. This option has no effect unless the request has "Expect" header set to "100-continue". Defaults to nil which disables this behaviour. This value can safely be set per request on the session.

  • :http_idle_timeout (Float) — default: 5 —

    The number of seconds a connection is allowed to sit idle before it is considered stale. Stale connections are closed and removed from the pool before making a request.

  • :http_open_timeout (Float) — default: 15 —

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_proxy (URI::HTTP, String) —

    A proxy to send requests through. Formatted like 'http://proxy.com:123'.

  • :http_read_timeout (Float) — default: 60 —

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_wire_trace (Boolean) — default: false —

    When true, HTTP debug output will be sent to the :logger.

  • :on_chunk_received (Proc) —

    When a Proc object is provided, it will be used as callback when each chunk of the response body is received. It provides three arguments: the chunk, the number of bytes received, and the total number of bytes in the response (or nil if the server did not send a content-length).

  • :on_chunk_sent (Proc) —

    When a Proc object is provided, it will be used as callback when each chunk of the request body is sent. It provides three arguments: the chunk, the number of bytes read from the body, and the total number of bytes in the body.

  • :raise_response_errors (Boolean) — default: true —

    When true, response errors are raised.

  • :ssl_ca_bundle (String) —

    Full path to the SSL certificate authority bundle file that should be used when verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.

  • :ssl_ca_directory (String) —

    Full path of the directory that contains the unbundled SSL certificate authority files for verifying peer certificates. If you do not pass :ssl_ca_bundle or :ssl_ca_directory the the system default will be used if available.

  • :ssl_ca_store (String) —

    Sets the X509::Store to verify peer certificate.

  • :ssl_cert (OpenSSL::X509::Certificate) —

    Sets a client certificate when creating http connections.

  • :ssl_key (OpenSSL::PKey) —

    Sets a client key when creating http connections.

  • :ssl_timeout (Float) —

    Sets the SSL timeout in seconds

  • :ssl_verify_peer (Boolean) — default: true —

    When true, SSL peer certificates are verified when establishing a connection.



471
472
473
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 471

def initialize(*args)
  super
end

Instance Method Details

#associate_agent_collaborator(params = {}) ⇒ Types::AssociateAgentCollaboratorResponse

Makes an agent a collaborator for another agent.

Examples:

Request syntax with placeholder values


resp = client.associate_agent_collaborator({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  agent_descriptor: { # required
    alias_arn: "AgentAliasArn",
  },
  collaborator_name: "Name", # required
  collaboration_instruction: "CollaborationInstruction", # required
  relay_conversation_history: "TO_COLLABORATOR", # accepts TO_COLLABORATOR, DISABLED
  client_token: "ClientToken",
})

Response structure


resp.agent_collaborator.agent_id #=> String
resp.agent_collaborator.agent_version #=> String
resp.agent_collaborator.agent_descriptor.alias_arn #=> String
resp.agent_collaborator.collaborator_id #=> String
resp.agent_collaborator.collaboration_instruction #=> String
resp.agent_collaborator.collaborator_name #=> String
resp.agent_collaborator.created_at #=> Time
resp.agent_collaborator.last_updated_at #=> Time
resp.agent_collaborator.relay_conversation_history #=> String, one of "TO_COLLABORATOR", "DISABLED"
resp.agent_collaborator.client_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The agent's ID.

  • :agent_version (required, String) —

    An agent version.

  • :agent_descriptor (required, Types::AgentDescriptor) —

    The alias of the collaborator agent.

  • :collaborator_name (required, String) —

    A name for the collaborator.

  • :collaboration_instruction (required, String) —

    Instruction for the collaborator.

  • :relay_conversation_history (String) —

    A relay conversation history for the collaborator.

  • :client_token (String) —

    A client token.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



538
539
540
541
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 538

def associate_agent_collaborator(params = {}, options = {})
  req = build_request(:associate_agent_collaborator, params)
  req.send_request(options)
end

#associate_agent_knowledge_base(params = {}) ⇒ Types::AssociateAgentKnowledgeBaseResponse

Associates a knowledge base with an agent. If a knowledge base is associated and its indexState is set to Enabled, the agent queries the knowledge base for information to augment its response to the user.

Examples:

Request syntax with placeholder values


resp = client.associate_agent_knowledge_base({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  knowledge_base_id: "Id", # required
  description: "Description", # required
  knowledge_base_state: "ENABLED", # accepts ENABLED, DISABLED
})

Response structure


resp.agent_knowledge_base.agent_id #=> String
resp.agent_knowledge_base.agent_version #=> String
resp.agent_knowledge_base.knowledge_base_id #=> String
resp.agent_knowledge_base.description #=> String
resp.agent_knowledge_base.created_at #=> Time
resp.agent_knowledge_base.updated_at #=> Time
resp.agent_knowledge_base.knowledge_base_state #=> String, one of "ENABLED", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent with which you want to associate the knowledge base.

  • :agent_version (required, String) —

    The version of the agent with which you want to associate the knowledge base.

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base to associate with the agent.

  • :description (required, String) —

    A description of what the agent should use the knowledge base for.

  • :knowledge_base_state (String) —

    Specifies whether to use the knowledge base or not when sending an InvokeAgent request.

Returns:

See Also:



599
600
601
602
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 599

def associate_agent_knowledge_base(params = {}, options = {})
  req = build_request(:associate_agent_knowledge_base, params)
  req.send_request(options)
end

#create_agent(params = {}) ⇒ Types::CreateAgentResponse

Amazon Bedrock Agents (now Amazon Bedrock Agents Classic) is no longer open to new customers. For capabilities similar to Bedrock Agents Classic, explore Amazon Bedrock AgentCore. Existing customers can continue to use the service as normal. For more information, see Amazon Bedrock Agents Classic availability change.

Creates an agent that orchestrates interactions between foundation models, data sources, software applications, user conversations, and APIs to carry out tasks to help customers.

  • Specify the following fields for security purposes.

  • agentResourceRoleArn – The Amazon Resource Name (ARN) of the role with permissions to invoke API operations on an agent.

  • (Optional) customerEncryptionKeyArn – The Amazon Resource Name (ARN) of a KMS key to encrypt the creation of the agent.

  • (Optional) idleSessionTTLinSeconds – Specify the number of seconds for which the agent should maintain session information. After this time expires, the subsequent InvokeAgent request begins a new session.

  • To enable your agent to retain conversational context across multiple sessions, include a memoryConfiguration object. For more information, see Configure memory.

  • To override the default prompt behavior for agent orchestration and to use advanced prompts, include a promptOverrideConfiguration object. For more information, see Advanced prompts.

  • If your agent fails to be created, the response returns a list of failureReasons alongside a list of recommendedActions for you to troubleshoot.

  • The agent instructions will not be honored if your agent has only one knowledge base, uses default prompts, has no action group, and user input is disabled.

Examples:

Request syntax with placeholder values


resp = client.create_agent({
  agent_name: "Name", # required
  client_token: "ClientToken",
  instruction: "Instruction",
  foundation_model: "ModelIdentifier",
  description: "Description",
  orchestration_type: "DEFAULT", # accepts DEFAULT, CUSTOM_ORCHESTRATION
  custom_orchestration: {
    executor: {
      lambda: "LambdaArn",
    },
  },
  idle_session_ttl_in_seconds: 1,
  agent_resource_role_arn: "AgentRoleArn",
  customer_encryption_key_arn: "KmsKeyArn",
  tags: {
    "TagKey" => "TagValue",
  },
  prompt_override_configuration: {
    prompt_configurations: [ # required
      {
        prompt_type: "PRE_PROCESSING", # accepts PRE_PROCESSING, ORCHESTRATION, POST_PROCESSING, KNOWLEDGE_BASE_RESPONSE_GENERATION, MEMORY_SUMMARIZATION
        prompt_creation_mode: "DEFAULT", # accepts DEFAULT, OVERRIDDEN
        prompt_state: "ENABLED", # accepts ENABLED, DISABLED
        base_prompt_template: "BasePromptTemplate",
        inference_configuration: {
          temperature: 1.0,
          top_p: 1.0,
          top_k: 1,
          maximum_length: 1,
          stop_sequences: ["String"],
        },
        parser_mode: "DEFAULT", # accepts DEFAULT, OVERRIDDEN
        foundation_model: "ModelIdentifier",
        additional_model_request_fields: {
        },
      },
    ],
    override_lambda: "LambdaArn",
  },
  guardrail_configuration: {
    guardrail_identifier: "GuardrailIdentifier",
    guardrail_version: "GuardrailVersion",
  },
  memory_configuration: {
    enabled_memory_types: ["SESSION_SUMMARY"], # required, accepts SESSION_SUMMARY
    storage_days: 1,
    session_summary_configuration: {
      max_recent_sessions: 1,
    },
  },
  agent_collaboration: "SUPERVISOR", # accepts SUPERVISOR, SUPERVISOR_ROUTER, DISABLED
})

Response structure


resp.agent.agent_id #=> String
resp.agent.agent_name #=> String
resp.agent.agent_arn #=> String
resp.agent.agent_version #=> String
resp.agent.client_token #=> String
resp.agent.instruction #=> String
resp.agent.agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"
resp.agent.foundation_model #=> String
resp.agent.description #=> String
resp.agent.orchestration_type #=> String, one of "DEFAULT", "CUSTOM_ORCHESTRATION"
resp.agent.custom_orchestration.executor.lambda #=> String
resp.agent.idle_session_ttl_in_seconds #=> Integer
resp.agent.agent_resource_role_arn #=> String
resp.agent.customer_encryption_key_arn #=> String
resp.agent.created_at #=> Time
resp.agent.updated_at #=> Time
resp.agent.prepared_at #=> Time
resp.agent.failure_reasons #=> Array
resp.agent.failure_reasons[0] #=> String
resp.agent.recommended_actions #=> Array
resp.agent.recommended_actions[0] #=> String
resp.agent.prompt_override_configuration.prompt_configurations #=> Array
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_type #=> String, one of "PRE_PROCESSING", "ORCHESTRATION", "POST_PROCESSING", "KNOWLEDGE_BASE_RESPONSE_GENERATION", "MEMORY_SUMMARIZATION"
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_creation_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_state #=> String, one of "ENABLED", "DISABLED"
resp.agent.prompt_override_configuration.prompt_configurations[0].base_prompt_template #=> String
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.temperature #=> Float
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_p #=> Float
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_k #=> Integer
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.maximum_length #=> Integer
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences #=> Array
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences[0] #=> String
resp.agent.prompt_override_configuration.prompt_configurations[0].parser_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent.prompt_override_configuration.prompt_configurations[0].foundation_model #=> String
resp.agent.prompt_override_configuration.override_lambda #=> String
resp.agent.guardrail_configuration.guardrail_identifier #=> String
resp.agent.guardrail_configuration.guardrail_version #=> String
resp.agent.memory_configuration.enabled_memory_types #=> Array
resp.agent.memory_configuration.enabled_memory_types[0] #=> String, one of "SESSION_SUMMARY"
resp.agent.memory_configuration.storage_days #=> Integer
resp.agent.memory_configuration.session_summary_configuration.max_recent_sessions #=> Integer
resp.agent.agent_collaboration #=> String, one of "SUPERVISOR", "SUPERVISOR_ROUTER", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_name (required, String) —

    A name for the agent that you create.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :instruction (String) —

    Instructions that tell the agent what it should do and how it should interact with users.

  • :foundation_model (String) —

    The identifier for the model that you want to be used for orchestration by the agent you create.

    The modelId to provide depends on the type of model or throughput that you use:

  • :description (String) —

    A description of the agent.

  • :orchestration_type (String) —

    Specifies the type of orchestration strategy for the agent. This is set to DEFAULT orchestration type, by default.

  • :custom_orchestration (Types::CustomOrchestration) —

    Contains details of the custom orchestration configured for the agent.

  • :idle_session_ttl_in_seconds (Integer) —

    The number of seconds for which Amazon Bedrock keeps information about a user's conversation with the agent.

    A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Bedrock deletes any data provided before the timeout.

  • :agent_resource_role_arn (String) —

    The Amazon Resource Name (ARN) of the IAM role with permissions to invoke API operations on the agent.

  • :customer_encryption_key_arn (String) —

    The Amazon Resource Name (ARN) of the KMS key with which to encrypt the agent.

  • :tags (Hash<String,String>) —

    Any tags that you want to attach to the agent.

  • :prompt_override_configuration (Types::PromptOverrideConfiguration) —

    Contains configurations to override prompts in different parts of an agent sequence. For more information, see Advanced prompts.

  • :guardrail_configuration (Types::GuardrailConfiguration) —

    The unique Guardrail configuration assigned to the agent when it is created.

  • :memory_configuration (Types::MemoryConfiguration) —

    Contains the details of the memory configured for the agent.

  • :agent_collaboration (String) —

    The agent's collaboration role.

Returns:

See Also:



866
867
868
869
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 866

def create_agent(params = {}, options = {})
  req = build_request(:create_agent, params)
  req.send_request(options)
end

#create_agent_action_group(params = {}) ⇒ Types::CreateAgentActionGroupResponse

Creates an action group for an agent. An action group represents the actions that an agent can carry out for the customer by defining the APIs that an agent can call and the logic for calling them.

To allow your agent to request the user for additional information when trying to complete a task, add an action group with the parentActionGroupSignature field set to AMAZON.UserInput.

To allow your agent to generate, run, and troubleshoot code when trying to complete a task, add an action group with the parentActionGroupSignature field set to AMAZON.CodeInterpreter.

You must leave the description, apiSchema, and actionGroupExecutor fields blank for this action group. During orchestration, if your agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

Examples:

Request syntax with placeholder values


resp = client.create_agent_action_group({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  action_group_name: "Name", # required
  client_token: "ClientToken",
  description: "Description",
  parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter, ANTHROPIC.Computer, ANTHROPIC.Bash, ANTHROPIC.TextEditor
  parent_action_group_signature_params: {
    "ActionGroupSignatureParamsKeyString" => "ActionGroupSignatureParamsValueString",
  },
  action_group_executor: {
    lambda: "LambdaArn",
    custom_control: "RETURN_CONTROL", # accepts RETURN_CONTROL
  },
  api_schema: {
    s3: {
      s3_bucket_name: "S3BucketName",
      s3_object_key: "S3ObjectKey",
    },
    payload: "Payload",
  },
  action_group_state: "ENABLED", # accepts ENABLED, DISABLED
  function_schema: {
    functions: [
      {
        name: "Name", # required
        description: "FunctionDescription",
        parameters: {
          "Name" => {
            description: "ParameterDescription",
            type: "string", # required, accepts string, number, integer, boolean, array
            required: false,
          },
        },
        require_confirmation: "ENABLED", # accepts ENABLED, DISABLED
      },
    ],
  },
})

Response structure


resp.agent_action_group.agent_id #=> String
resp.agent_action_group.agent_version #=> String
resp.agent_action_group.action_group_id #=> String
resp.agent_action_group.action_group_name #=> String
resp.agent_action_group.client_token #=> String
resp.agent_action_group.description #=> String
resp.agent_action_group.created_at #=> Time
resp.agent_action_group.updated_at #=> Time
resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter", "ANTHROPIC.Computer", "ANTHROPIC.Bash", "ANTHROPIC.TextEditor"
resp.agent_action_group.parent_action_group_signature_params #=> Hash
resp.agent_action_group.parent_action_group_signature_params["ActionGroupSignatureParamsKeyString"] #=> String
resp.agent_action_group.action_group_executor.lambda #=> String
resp.agent_action_group.action_group_executor.custom_control #=> String, one of "RETURN_CONTROL"
resp.agent_action_group.api_schema.s3.s3_bucket_name #=> String
resp.agent_action_group.api_schema.s3.s3_object_key #=> String
resp.agent_action_group.api_schema.payload #=> String
resp.agent_action_group.function_schema.functions #=> Array
resp.agent_action_group.function_schema.functions[0].name #=> String
resp.agent_action_group.function_schema.functions[0].description #=> String
resp.agent_action_group.function_schema.functions[0].parameters #=> Hash
resp.agent_action_group.function_schema.functions[0].parameters["Name"].description #=> String
resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
resp.agent_action_group.action_group_state #=> String, one of "ENABLED", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent for which to create the action group.

  • :agent_version (required, String) —

    The version of the agent for which to create the action group.

  • :action_group_name (required, String) —

    The name to give the action group.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :description (String) —

    A description of the action group.

  • :parent_action_group_signature (String) —

    Specify a built-in or computer use action for this action group. If you specify a value, you must leave the description, apiSchema, and actionGroupExecutor fields empty for this action group.

    • To allow your agent to request the user for additional information when trying to complete a task, set this field to AMAZON.UserInput.

    • To allow your agent to generate, run, and troubleshoot code when trying to complete a task, set this field to AMAZON.CodeInterpreter.

    • To allow your agent to use an Anthropic computer use tool, specify one of the following values.

      Computer use is a new Anthropic Claude model capability (in beta) available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. When operating computer use functionality, we recommend taking additional security precautions, such as executing computer actions in virtual environments with restricted data access and limited internet connectivity. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.

      • ANTHROPIC.Computer - Gives the agent permission to use the mouse and keyboard and take screenshots.

      • ANTHROPIC.TextEditor - Gives the agent permission to view, create and edit files.

      • ANTHROPIC.Bash - Gives the agent permission to run commands in a bash shell.

  • :parent_action_group_signature_params (Hash<String,String>) —

    The configuration settings for a computer use action.

    Computer use is a new Anthropic Claude model capability (in beta) available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.

  • :action_group_executor (Types::ActionGroupExecutor) —

    The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action or the custom control method for handling the information elicited from the user.

  • :api_schema (Types::APISchema) —

    Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.

  • :action_group_state (String) —

    Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

  • :function_schema (Types::FunctionSchema) —

    Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.

Returns:

See Also:



1075
1076
1077
1078
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 1075

def create_agent_action_group(params = {}, options = {})
  req = build_request(:create_agent_action_group, params)
  req.send_request(options)
end

#create_agent_alias(params = {}) ⇒ Types::CreateAgentAliasResponse

Creates an alias of an agent that can be used to deploy the agent.

Examples:

Request syntax with placeholder values


resp = client.create_agent_alias({
  agent_id: "Id", # required
  agent_alias_name: "Name", # required
  client_token: "ClientToken",
  description: "Description",
  routing_configuration: [
    {
      agent_version: "Version",
      provisioned_throughput: "ProvisionedModelIdentifier",
    },
  ],
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.agent_alias.agent_id #=> String
resp.agent_alias.agent_alias_id #=> String
resp.agent_alias.agent_alias_name #=> String
resp.agent_alias.agent_alias_arn #=> String
resp.agent_alias.client_token #=> String
resp.agent_alias.description #=> String
resp.agent_alias.routing_configuration #=> Array
resp.agent_alias.routing_configuration[0].agent_version #=> String
resp.agent_alias.routing_configuration[0].provisioned_throughput #=> String
resp.agent_alias.created_at #=> Time
resp.agent_alias.updated_at #=> Time
resp.agent_alias.agent_alias_history_events #=> Array
resp.agent_alias.agent_alias_history_events[0].routing_configuration #=> Array
resp.agent_alias.agent_alias_history_events[0].routing_configuration[0].agent_version #=> String
resp.agent_alias.agent_alias_history_events[0].routing_configuration[0].provisioned_throughput #=> String
resp.agent_alias.agent_alias_history_events[0].end_date #=> Time
resp.agent_alias.agent_alias_history_events[0].start_date #=> Time
resp.agent_alias.agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
resp.agent_alias.failure_reasons #=> Array
resp.agent_alias.failure_reasons[0] #=> String
resp.agent_alias.alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

  • :agent_alias_name (required, String) —

    The name of the alias.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :description (String) —

    A description of the alias of the agent.

  • :routing_configuration (Array<Types::AgentAliasRoutingConfigurationListItem>) —

    Contains details about the routing configuration of the alias.

  • :tags (Hash<String,String>) —

    Any tags that you want to attach to the alias of the agent.

Returns:

See Also:



1160
1161
1162
1163
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 1160

def create_agent_alias(params = {}, options = {})
  req = build_request(:create_agent_alias, params)
  req.send_request(options)
end

#create_data_source(params = {}) ⇒ Types::CreateDataSourceResponse

Connects a knowledge base to a data source. You specify the configuration for the specific data source service in the dataSourceConfiguration field.

You can't change the chunkingConfiguration after you create the data source connector.

Examples:

Request syntax with placeholder values


resp = client.create_data_source({
  knowledge_base_id: "Id", # required
  client_token: "ClientToken",
  name: "Name", # required
  description: "Description",
  data_source_configuration: { # required
    type: "S3", # required, accepts S3, WEB, CONFLUENCE, SALESFORCE, SHAREPOINT, CUSTOM, REDSHIFT_METADATA, MANAGED_KNOWLEDGE_BASE_CONNECTOR
    managed_knowledge_base_connector_configuration: {
      deletion_protection_configuration: {
        deletion_protection_status: "ENABLED", # required, accepts ENABLED, DISABLED
        deletion_protection_threshold: 1,
      },
      media_extraction_configuration: {
        image_extraction_configuration: {
          image_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
        },
        audio_extraction_configuration: {
          audio_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
        },
        video_extraction_configuration: {
          video_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
        },
      },
      connector_parameters: {
      },
      sync_schedule: {
        daily: {
        },
        weekly: {
          day_of_week: "SUNDAY", # required, accepts SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
        },
        monthly: {
          day_of_month: { # required
            day_number: 1,
            last_day_of_month: {
            },
          },
        },
      },
    },
    s3_configuration: {
      bucket_arn: "S3BucketArn", # required
      inclusion_prefixes: ["S3Prefix"],
      bucket_owner_account_id: "BucketOwnerAccountId",
    },
    web_configuration: {
      source_configuration: { # required
        url_configuration: { # required
          seed_urls: [
            {
              url: "Url",
            },
          ],
        },
      },
      crawler_configuration: {
        crawler_limits: {
          rate_limit: 1,
          max_pages: 1,
        },
        inclusion_filters: ["FilterPattern"],
        exclusion_filters: ["FilterPattern"],
        scope: "HOST_ONLY", # accepts HOST_ONLY, SUBDOMAINS
        user_agent: "UserAgent",
        user_agent_header: "UserAgentHeader",
      },
    },
    confluence_configuration: {
      source_configuration: { # required
        host_url: "HttpsUrl", # required
        host_type: "SAAS", # required, accepts SAAS
        auth_type: "BASIC", # required, accepts BASIC, OAUTH2_CLIENT_CREDENTIALS
        credentials_secret_arn: "SecretArn", # required
      },
      crawler_configuration: {
        filter_configuration: {
          type: "PATTERN", # required, accepts PATTERN
          pattern_object_filter: {
            filters: [ # required
              {
                object_type: "FilteredObjectType", # required
                inclusion_filters: ["FilterPattern"],
                exclusion_filters: ["FilterPattern"],
              },
            ],
          },
        },
      },
    },
    salesforce_configuration: {
      source_configuration: { # required
        host_url: "HttpsUrl", # required
        auth_type: "OAUTH2_CLIENT_CREDENTIALS", # required, accepts OAUTH2_CLIENT_CREDENTIALS
        credentials_secret_arn: "SecretArn", # required
      },
      crawler_configuration: {
        filter_configuration: {
          type: "PATTERN", # required, accepts PATTERN
          pattern_object_filter: {
            filters: [ # required
              {
                object_type: "FilteredObjectType", # required
                inclusion_filters: ["FilterPattern"],
                exclusion_filters: ["FilterPattern"],
              },
            ],
          },
        },
      },
    },
    share_point_configuration: {
      source_configuration: { # required
        tenant_id: "Microsoft365TenantId",
        domain: "SharePointDomain", # required
        site_urls: ["HttpsUrl"], # required
        host_type: "ONLINE", # required, accepts ONLINE
        auth_type: "OAUTH2_CLIENT_CREDENTIALS", # required, accepts OAUTH2_CLIENT_CREDENTIALS, OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS
        credentials_secret_arn: "SecretArn", # required
      },
      crawler_configuration: {
        filter_configuration: {
          type: "PATTERN", # required, accepts PATTERN
          pattern_object_filter: {
            filters: [ # required
              {
                object_type: "FilteredObjectType", # required
                inclusion_filters: ["FilterPattern"],
                exclusion_filters: ["FilterPattern"],
              },
            ],
          },
        },
      },
    },
  },
  data_deletion_policy: "RETAIN", # accepts RETAIN, DELETE
  server_side_encryption_configuration: {
    kms_key_arn: "KmsKeyArn",
  },
  vector_ingestion_configuration: {
    chunking_configuration: {
      chunking_strategy: "FIXED_SIZE", # required, accepts FIXED_SIZE, NONE, HIERARCHICAL, SEMANTIC
      fixed_size_chunking_configuration: {
        max_tokens: 1, # required
        overlap_percentage: 1, # required
      },
      hierarchical_chunking_configuration: {
        level_configurations: [ # required
          {
            max_tokens: 1, # required
          },
        ],
        overlap_tokens: 1, # required
      },
      semantic_chunking_configuration: {
        max_tokens: 1, # required
        buffer_size: 1, # required
        breakpoint_percentile_threshold: 1, # required
      },
    },
    custom_transformation_configuration: {
      intermediate_storage: { # required
        s3_location: { # required
          uri: "S3BucketUri", # required
        },
      },
      transformations: [ # required
        {
          transformation_function: { # required
            transformation_lambda_configuration: { # required
              lambda_arn: "LambdaArn", # required
            },
          },
          step_to_apply: "POST_CHUNKING", # required, accepts POST_CHUNKING
        },
      ],
    },
    parsing_configuration: {
      parsing_strategy: "BEDROCK_FOUNDATION_MODEL", # required, accepts BEDROCK_FOUNDATION_MODEL, BEDROCK_DATA_AUTOMATION, SMART_PARSING, MULTI_MODAL_EMBEDDINGS
      bedrock_foundation_model_configuration: {
        model_arn: "BedrockModelArn", # required
        parsing_prompt: {
          parsing_prompt_text: "ParsingPromptText", # required
        },
        parsing_modality: "MULTIMODAL", # accepts MULTIMODAL
      },
      bedrock_data_automation_configuration: {
        parsing_modality: "MULTIMODAL", # accepts MULTIMODAL
      },
    },
    context_enrichment_configuration: {
      type: "BEDROCK_FOUNDATION_MODEL", # required, accepts BEDROCK_FOUNDATION_MODEL
      bedrock_foundation_model_configuration: {
        enrichment_strategy_configuration: { # required
          method: "CHUNK_ENTITY_EXTRACTION", # required, accepts CHUNK_ENTITY_EXTRACTION
        },
        model_arn: "BedrockModelArn", # required
      },
    },
  },
})

Response structure


resp.data_source.knowledge_base_id #=> String
resp.data_source.data_source_id #=> String
resp.data_source.name #=> String
resp.data_source.status #=> String, one of "AVAILABLE", "DELETING", "DELETE_UNSUCCESSFUL", "CREATING", "UPDATING", "FAILED"
resp.data_source.description #=> String
resp.data_source.data_source_configuration.type #=> String, one of "S3", "WEB", "CONFLUENCE", "SALESFORCE", "SHAREPOINT", "CUSTOM", "REDSHIFT_METADATA", "MANAGED_KNOWLEDGE_BASE_CONNECTOR"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.deletion_protection_configuration.deletion_protection_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.deletion_protection_configuration.deletion_protection_threshold #=> Integer
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.image_extraction_configuration.image_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.audio_extraction_configuration.audio_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.video_extraction_configuration.video_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.sync_schedule.weekly.day_of_week #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.sync_schedule.monthly.day_of_month.day_number #=> Integer
resp.data_source.data_source_configuration.s3_configuration.bucket_arn #=> String
resp.data_source.data_source_configuration.s3_configuration.inclusion_prefixes #=> Array
resp.data_source.data_source_configuration.s3_configuration.inclusion_prefixes[0] #=> String
resp.data_source.data_source_configuration.s3_configuration. #=> String
resp.data_source.data_source_configuration.web_configuration.source_configuration.url_configuration.seed_urls #=> Array
resp.data_source.data_source_configuration.web_configuration.source_configuration.url_configuration.seed_urls[0].url #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.crawler_limits.rate_limit #=> Integer
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.crawler_limits.max_pages #=> Integer
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.inclusion_filters #=> Array
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.exclusion_filters #=> Array
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.scope #=> String, one of "HOST_ONLY", "SUBDOMAINS"
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.user_agent #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.user_agent_header #=> String
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.host_url #=> String
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.host_type #=> String, one of "SAAS"
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.auth_type #=> String, one of "BASIC", "OAUTH2_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.host_url #=> String
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.auth_type #=> String, one of "OAUTH2_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.tenant_id #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.domain #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.site_urls #=> Array
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.site_urls[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.host_type #=> String, one of "ONLINE"
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.auth_type #=> String, one of "OAUTH2_CLIENT_CREDENTIALS", "OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.server_side_encryption_configuration.kms_key_arn #=> String
resp.data_source.vector_ingestion_configuration.chunking_configuration.chunking_strategy #=> String, one of "FIXED_SIZE", "NONE", "HIERARCHICAL", "SEMANTIC"
resp.data_source.vector_ingestion_configuration.chunking_configuration.fixed_size_chunking_configuration.max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.fixed_size_chunking_configuration.overlap_percentage #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.level_configurations #=> Array
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.level_configurations[0].max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.overlap_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.buffer_size #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.breakpoint_percentile_threshold #=> Integer
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.intermediate_storage.s3_location.uri #=> String
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations #=> Array
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations[0].transformation_function.transformation_lambda_configuration.lambda_arn #=> String
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations[0].step_to_apply #=> String, one of "POST_CHUNKING"
resp.data_source.vector_ingestion_configuration.parsing_configuration.parsing_strategy #=> String, one of "BEDROCK_FOUNDATION_MODEL", "BEDROCK_DATA_AUTOMATION", "SMART_PARSING", "MULTI_MODAL_EMBEDDINGS"
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.model_arn #=> String
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.parsing_prompt.parsing_prompt_text #=> String
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.parsing_modality #=> String, one of "MULTIMODAL"
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_data_automation_configuration.parsing_modality #=> String, one of "MULTIMODAL"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.type #=> String, one of "BEDROCK_FOUNDATION_MODEL"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.bedrock_foundation_model_configuration.enrichment_strategy_configuration.method #=> String, one of "CHUNK_ENTITY_EXTRACTION"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.bedrock_foundation_model_configuration.model_arn #=> String
resp.data_source.data_deletion_policy #=> String, one of "RETAIN", "DELETE"
resp.data_source.created_at #=> Time
resp.data_source.updated_at #=> Time
resp.data_source.failure_reasons #=> Array
resp.data_source.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base to which to add the data source.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :name (required, String) —

    The name of the data source.

  • :description (String) —

    A description of the data source.

  • :data_source_configuration (required, Types::DataSourceConfiguration) —

    The connection configuration for the data source.

  • :data_deletion_policy (String) —

    The data deletion policy for the data source.

    You can set the data deletion policy to:

    • DELETE: Deletes all data from your data source that’s converted into vector embeddings upon deletion of a knowledge base or data source resource. Note that the vector store itself is not deleted, only the data. This flag is ignored if an Amazon Web Services account is deleted.

    • RETAIN: Retains all data from your data source that’s converted into vector embeddings upon deletion of a knowledge base or data source resource. Note that the vector store itself is not deleted if you delete a knowledge base or data source resource.

    For managed knowledge bases, the only supported option is DELETE, which is also the default.

  • :server_side_encryption_configuration (Types::ServerSideEncryptionConfiguration) —

    Contains details about the server-side encryption for the data source.

  • :vector_ingestion_configuration (Types::VectorIngestionConfiguration) —

    Contains details about how to ingest the documents in the data source.

Returns:

See Also:



1530
1531
1532
1533
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 1530

def create_data_source(params = {}, options = {})
  req = build_request(:create_data_source, params)
  req.send_request(options)
end

#create_flow(params = {}) ⇒ Types::CreateFlowResponse

Creates a prompt flow that you can use to send an input through various steps to yield an output. Configure nodes, each of which corresponds to a step of the flow, and create connections between the nodes to create paths to different outputs. For more information, see How it works and Create a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.create_flow({
  name: "FlowName", # required
  description: "FlowDescription",
  execution_role_arn: "FlowExecutionRoleArn", # required
  customer_encryption_key_arn: "KmsKeyArn",
  definition: {
    nodes: [
      {
        name: "FlowNodeName", # required
        type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector, InlineCode, Loop, LoopInput, LoopController
        configuration: {
          input: {
          },
          output: {
          },
          knowledge_base: {
            knowledge_base_id: "FlowKnowledgeBaseId", # required
            model_id: "KnowledgeBaseModelIdentifier",
            guardrail_configuration: {
              guardrail_identifier: "GuardrailIdentifier",
              guardrail_version: "GuardrailVersion",
            },
            number_of_results: 1,
            prompt_template: {
              text_prompt_template: "KnowledgeBaseTextPrompt",
            },
            inference_configuration: {
              text: {
                temperature: 1.0,
                top_p: 1.0,
                max_tokens: 1,
                stop_sequences: ["String"],
              },
            },
            reranking_configuration: {
              type: "BEDROCK_RERANKING_MODEL", # required, accepts BEDROCK_RERANKING_MODEL
              bedrock_reranking_configuration: {
                model_configuration: { # required
                  model_arn: "BedrockRerankingModelArn", # required
                  additional_model_request_fields: {
                    "AdditionalModelRequestFieldsKey" => {
                    },
                  },
                },
                number_of_reranked_results: 1,
                metadata_configuration: {
                  selection_mode: "SELECTIVE", # required, accepts SELECTIVE, ALL
                  selective_mode_configuration: {
                    fields_to_include: [
                      {
                        field_name: "FieldForRerankingFieldNameString", # required
                      },
                    ],
                    fields_to_exclude: [
                      {
                        field_name: "FieldForRerankingFieldNameString", # required
                      },
                    ],
                  },
                },
              },
            },
            orchestration_configuration: {
              prompt_template: {
                text_prompt_template: "KnowledgeBaseTextPrompt",
              },
              inference_config: {
                text: {
                  temperature: 1.0,
                  top_p: 1.0,
                  max_tokens: 1,
                  stop_sequences: ["String"],
                },
              },
              additional_model_request_fields: {
                "AdditionalModelRequestFieldsKey" => {
                },
              },
              performance_config: {
                latency: "standard", # accepts standard, optimized
              },
            },
          },
          condition: {
            conditions: [ # required
              {
                name: "FlowConditionName", # required
                expression: "FlowConditionExpression",
              },
            ],
          },
          lex: {
            bot_alias_arn: "FlowLexBotAliasArn", # required
            locale_id: "FlowLexBotLocaleId", # required
          },
          prompt: {
            source_configuration: { # required
              resource: {
                prompt_arn: "FlowPromptArn", # required
              },
              inline: {
                template_type: "TEXT", # required, accepts TEXT, CHAT
                template_configuration: { # required
                  text: {
                    text: "TextPrompt", # required
                    cache_point: {
                      type: "default", # required, accepts default
                    },
                    input_variables: [
                      {
                        name: "PromptInputVariableName",
                      },
                    ],
                  },
                  chat: {
                    messages: [ # required
                      {
                        role: "user", # required, accepts user, assistant
                        content: [ # required
                          {
                            text: "String",
                            cache_point: {
                              type: "default", # required, accepts default
                            },
                          },
                        ],
                      },
                    ],
                    system: [
                      {
                        text: "NonEmptyString",
                        cache_point: {
                          type: "default", # required, accepts default
                        },
                      },
                    ],
                    input_variables: [
                      {
                        name: "PromptInputVariableName",
                      },
                    ],
                    tool_configuration: {
                      tools: [ # required
                        {
                          tool_spec: {
                            name: "ToolName", # required
                            description: "NonEmptyString",
                            input_schema: { # required
                              json: {
                              },
                            },
                            strict: false,
                          },
                          cache_point: {
                            type: "default", # required, accepts default
                          },
                        },
                      ],
                      tool_choice: {
                        auto: {
                        },
                        any: {
                        },
                        tool: {
                          name: "ToolName", # required
                        },
                      },
                    },
                  },
                },
                model_id: "FlowPromptModelIdentifier", # required
                inference_configuration: {
                  text: {
                    temperature: 1.0,
                    top_p: 1.0,
                    max_tokens: 1,
                    stop_sequences: ["String"],
                  },
                },
                additional_model_request_fields: {
                },
              },
            },
            guardrail_configuration: {
              guardrail_identifier: "GuardrailIdentifier",
              guardrail_version: "GuardrailVersion",
            },
          },
          lambda_function: {
            lambda_arn: "FlowLambdaArn", # required
          },
          storage: {
            service_configuration: { # required
              s3: {
                bucket_name: "FlowS3BucketName", # required
              },
            },
          },
          agent: {
            agent_alias_arn: "FlowAgentAliasArn", # required
          },
          retrieval: {
            service_configuration: { # required
              s3: {
                bucket_name: "FlowS3BucketName", # required
              },
            },
          },
          iterator: {
          },
          collector: {
          },
          inline_code: {
            code: "InlineCode", # required
            language: "Python_3", # required, accepts Python_3
          },
          loop: {
            definition: { # required
              # recursive FlowDefinition
            },
          },
          loop_input: {
          },
          loop_controller: {
            continue_condition: { # required
              name: "FlowConditionName", # required
              expression: "FlowConditionExpression",
            },
            max_iterations: 1,
          },
        },
        inputs: [
          {
            name: "FlowNodeInputName", # required
            type: "String", # required, accepts String, Number, Boolean, Object, Array
            expression: "FlowNodeInputExpression", # required
            category: "LoopCondition", # accepts LoopCondition, ReturnValueToLoopStart, ExitLoop
          },
        ],
        outputs: [
          {
            name: "FlowNodeOutputName", # required
            type: "String", # required, accepts String, Number, Boolean, Object, Array
          },
        ],
      },
    ],
    connections: [
      {
        type: "Data", # required, accepts Data, Conditional
        name: "FlowConnectionName", # required
        source: "FlowNodeName", # required
        target: "FlowNodeName", # required
        configuration: {
          data: {
            source_output: "FlowNodeOutputName", # required
            target_input: "FlowNodeInputName", # required
          },
          conditional: {
            condition: "FlowConditionName", # required
          },
        },
      },
    ],
  },
  client_token: "ClientToken",
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.name #=> String
resp.description #=> String
resp.execution_role_arn #=> String
resp.customer_encryption_key_arn #=> String
resp.id #=> String
resp.arn #=> String
resp.status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"
resp.created_at #=> Time
resp.updated_at #=> Time
resp.version #=> String
resp.definition.nodes #=> Array
resp.definition.nodes[0].name #=> String
resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode", "Loop", "LoopInput", "LoopController"
resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.model_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.knowledge_base.number_of_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.type #=> String, one of "BEDROCK_RERANKING_MODEL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.model_arn #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.number_of_reranked_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selection_mode #=> String, one of "SELECTIVE", "ALL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.performance_config.latency #=> String, one of "standard", "optimized"
resp.definition.nodes[0].configuration.condition.conditions #=> Array
resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
resp.definition.nodes[0].configuration.lex.bot_alias_arn #=> String
resp.definition.nodes[0].configuration.lex.locale_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.resource.prompt_arn #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_type #=> String, one of "TEXT", "CHAT"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.model_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.lambda_function.lambda_arn #=> String
resp.definition.nodes[0].configuration.storage.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.agent.agent_alias_arn #=> String
resp.definition.nodes[0].configuration.retrieval.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.inline_code.code #=> String
resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
resp.definition.nodes[0].configuration.loop.definition #=> Types::FlowDefinition
resp.definition.nodes[0].configuration.loop_controller.continue_condition.name #=> String
resp.definition.nodes[0].configuration.loop_controller.continue_condition.expression #=> String
resp.definition.nodes[0].configuration.loop_controller.max_iterations #=> Integer
resp.definition.nodes[0].inputs #=> Array
resp.definition.nodes[0].inputs[0].name #=> String
resp.definition.nodes[0].inputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.nodes[0].inputs[0].expression #=> String
resp.definition.nodes[0].inputs[0].category #=> String, one of "LoopCondition", "ReturnValueToLoopStart", "ExitLoop"
resp.definition.nodes[0].outputs #=> Array
resp.definition.nodes[0].outputs[0].name #=> String
resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.connections #=> Array
resp.definition.connections[0].type #=> String, one of "Data", "Conditional"
resp.definition.connections[0].name #=> String
resp.definition.connections[0].source #=> String
resp.definition.connections[0].target #=> String
resp.definition.connections[0].configuration.data.source_output #=> String
resp.definition.connections[0].configuration.data.target_input #=> String
resp.definition.connections[0].configuration.conditional.condition #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :name (required, String) —

    A name for the flow.

  • :description (String) —

    A description for the flow.

  • :execution_role_arn (required, String) —

    The Amazon Resource Name (ARN) of the service role with permissions to create and manage a flow. For more information, see Create a service role for flows in Amazon Bedrock in the Amazon Bedrock User Guide.

  • :customer_encryption_key_arn (String) —

    The Amazon Resource Name (ARN) of the KMS key to encrypt the flow.

  • :definition (Types::FlowDefinition) —

    A definition of the nodes and connections between nodes in the flow.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :tags (Hash<String,String>) —

    Any tags that you want to attach to the flow. For more information, see Tagging resources in Amazon Bedrock.

Returns:

See Also:



1985
1986
1987
1988
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 1985

def create_flow(params = {}, options = {})
  req = build_request(:create_flow, params)
  req.send_request(options)
end

#create_flow_alias(params = {}) ⇒ Types::CreateFlowAliasResponse

Creates an alias of a flow for deployment. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.create_flow_alias({
  name: "Name", # required
  description: "Description",
  routing_configuration: [ # required
    {
      flow_version: "Version",
    },
  ],
  concurrency_configuration: {
    type: "Automatic", # required, accepts Automatic, Manual
    max_concurrency: 1,
  },
  flow_identifier: "FlowIdentifier", # required
  client_token: "ClientToken",
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.name #=> String
resp.description #=> String
resp.routing_configuration #=> Array
resp.routing_configuration[0].flow_version #=> String
resp.concurrency_configuration.type #=> String, one of "Automatic", "Manual"
resp.concurrency_configuration.max_concurrency #=> Integer
resp.flow_id #=> String
resp.id #=> String
resp.arn #=> String
resp.created_at #=> Time
resp.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :name (required, String) —

    A name for the alias.

  • :description (String) —

    A description for the alias.

  • :routing_configuration (required, Array<Types::FlowAliasRoutingConfigurationListItem>) —

    Contains information about the version to which to map the alias.

  • :concurrency_configuration (Types::FlowAliasConcurrencyConfiguration) —

    The configuration that specifies how nodes in the flow are executed in parallel.

  • :flow_identifier (required, String) —

    The unique identifier of the flow for which to create an alias.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :tags (Hash<String,String>) —

    Any tags that you want to attach to the alias of the flow. For more information, see Tagging resources in Amazon Bedrock.

Returns:

See Also:



2085
2086
2087
2088
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 2085

def create_flow_alias(params = {}, options = {})
  req = build_request(:create_flow_alias, params)
  req.send_request(options)
end

#create_flow_version(params = {}) ⇒ Types::CreateFlowVersionResponse

Creates a version of the flow that you can deploy. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.create_flow_version({
  flow_identifier: "FlowIdentifier", # required
  description: "FlowDescription",
  client_token: "ClientToken",
})

Response structure


resp.name #=> String
resp.description #=> String
resp.execution_role_arn #=> String
resp.customer_encryption_key_arn #=> String
resp.id #=> String
resp.arn #=> String
resp.status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"
resp.created_at #=> Time
resp.version #=> String
resp.definition.nodes #=> Array
resp.definition.nodes[0].name #=> String
resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode", "Loop", "LoopInput", "LoopController"
resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.model_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.knowledge_base.number_of_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.type #=> String, one of "BEDROCK_RERANKING_MODEL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.model_arn #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.number_of_reranked_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selection_mode #=> String, one of "SELECTIVE", "ALL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.performance_config.latency #=> String, one of "standard", "optimized"
resp.definition.nodes[0].configuration.condition.conditions #=> Array
resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
resp.definition.nodes[0].configuration.lex.bot_alias_arn #=> String
resp.definition.nodes[0].configuration.lex.locale_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.resource.prompt_arn #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_type #=> String, one of "TEXT", "CHAT"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.model_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.lambda_function.lambda_arn #=> String
resp.definition.nodes[0].configuration.storage.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.agent.agent_alias_arn #=> String
resp.definition.nodes[0].configuration.retrieval.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.inline_code.code #=> String
resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
resp.definition.nodes[0].configuration.loop.definition #=> Types::FlowDefinition
resp.definition.nodes[0].configuration.loop_controller.continue_condition.name #=> String
resp.definition.nodes[0].configuration.loop_controller.continue_condition.expression #=> String
resp.definition.nodes[0].configuration.loop_controller.max_iterations #=> Integer
resp.definition.nodes[0].inputs #=> Array
resp.definition.nodes[0].inputs[0].name #=> String
resp.definition.nodes[0].inputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.nodes[0].inputs[0].expression #=> String
resp.definition.nodes[0].inputs[0].category #=> String, one of "LoopCondition", "ReturnValueToLoopStart", "ExitLoop"
resp.definition.nodes[0].outputs #=> Array
resp.definition.nodes[0].outputs[0].name #=> String
resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.connections #=> Array
resp.definition.connections[0].type #=> String, one of "Data", "Conditional"
resp.definition.connections[0].name #=> String
resp.definition.connections[0].source #=> String
resp.definition.connections[0].target #=> String
resp.definition.connections[0].configuration.data.source_output #=> String
resp.definition.connections[0].configuration.data.target_input #=> String
resp.definition.connections[0].configuration.conditional.condition #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow that you want to create a version of.

  • :description (String) —

    A description of the version of the flow.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

Returns:

See Also:



2247
2248
2249
2250
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 2247

def create_flow_version(params = {}, options = {})
  req = build_request(:create_flow_version, params)
  req.send_request(options)
end

#create_knowledge_base(params = {}) ⇒ Types::CreateKnowledgeBaseResponse

Creates a knowledge base. A knowledge base contains your data sources so that Large Language Models (LLMs) can use your data. To create a knowledge base, you must first set up your data sources and configure a supported vector store. For more information, see Set up a knowledge base.

To create a managed knowledge base, provide a managedKnowledgeBaseConfiguration during creation. For more information, see Build a managed knowledge base.

  • Provide the name and an optional description.

  • Provide the Amazon Resource Name (ARN) with permissions to create a knowledge base in the roleArn field.

  • For managed knowledge bases, set embeddingModelType to MANAGED to use the service-managed embedding model, or CUSTOM with an embeddingModelArn to use your own. To use your own KMS key for encryption, provide the ARN in serverSideEncryptionConfiguration. No vector store configuration is required for managed knowledge bases.

  • For self-managed knowledge bases, provide the embedding model to use in the embeddingModelArn field in the knowledgeBaseConfiguration object.

  • For self-managed knowledge bases, provide the configuration for your vector store in the storageConfiguration object.

Examples:

Request syntax with placeholder values


resp = client.create_knowledge_base({
  client_token: "ClientToken",
  name: "Name", # required
  description: "Description",
  role_arn: "KnowledgeBaseRoleArn", # required
  knowledge_base_configuration: { # required
    type: "VECTOR", # required, accepts VECTOR, KENDRA, SQL, MANAGED
    vector_knowledge_base_configuration: {
      embedding_model_arn: "BedrockEmbeddingModelArn", # required
      embedding_model_configuration: {
        bedrock_embedding_model_configuration: {
          dimensions: 1,
          embedding_data_type: "FLOAT32", # accepts FLOAT32, BINARY
          audio: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          video: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          model_configuration: {
          },
        },
      },
      supplemental_data_storage_configuration: {
        storage_locations: [ # required
          {
            type: "S3", # required, accepts S3
            s3_location: {
              uri: "S3BucketUri", # required
            },
          },
        ],
      },
    },
    managed_knowledge_base_configuration: {
      embedding_model_type: "CUSTOM", # accepts CUSTOM, MANAGED
      embedding_model_arn: "BedrockEmbeddingModelArn",
      embedding_model_configuration: {
        bedrock_embedding_model_configuration: {
          dimensions: 1,
          embedding_data_type: "FLOAT32", # accepts FLOAT32, BINARY
          audio: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          video: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          model_configuration: {
          },
        },
      },
      server_side_encryption_configuration: {
        kms_key_arn: "KmsKeyArn",
      },
      supplemental_data_storage_configuration: {
        storage_locations: [ # required
          {
            type: "S3", # required, accepts S3
            s3_location: {
              uri: "S3BucketUri", # required
            },
          },
        ],
      },
    },
    kendra_knowledge_base_configuration: {
      kendra_index_arn: "KendraIndexArn", # required
    },
    sql_knowledge_base_configuration: {
      type: "REDSHIFT", # required, accepts REDSHIFT
      redshift_configuration: {
        storage_configurations: [ # required
          {
            type: "REDSHIFT", # required, accepts REDSHIFT, AWS_DATA_CATALOG
            aws_data_catalog_configuration: {
              table_names: ["AwsDataCatalogTableName"], # required
            },
            redshift_configuration: {
              database_name: "RedshiftDatabase", # required
            },
          },
        ],
        query_engine_configuration: { # required
          type: "SERVERLESS", # required, accepts SERVERLESS, PROVISIONED
          serverless_configuration: {
            workgroup_arn: "WorkgroupArn", # required
            auth_configuration: { # required
              type: "IAM", # required, accepts IAM, USERNAME_PASSWORD
              username_password_secret_arn: "SecretArn",
            },
          },
          provisioned_configuration: {
            cluster_identifier: "RedshiftClusterIdentifier", # required
            auth_configuration: { # required
              type: "IAM", # required, accepts IAM, USERNAME_PASSWORD, USERNAME
              database_user: "String",
              username_password_secret_arn: "SecretArn",
            },
          },
        },
        query_generation_configuration: {
          execution_timeout_seconds: 1,
          generation_context: {
            tables: [
              {
                name: "QueryGenerationTableName", # required
                description: "DescriptionString",
                inclusion: "INCLUDE", # accepts INCLUDE, EXCLUDE
                columns: [
                  {
                    name: "QueryGenerationColumnName",
                    description: "DescriptionString",
                    inclusion: "INCLUDE", # accepts INCLUDE, EXCLUDE
                  },
                ],
              },
            ],
            curated_queries: [
              {
                natural_language: "NaturalLanguageString", # required
                sql: "SqlString", # required
              },
            ],
          },
        },
      },
    },
  },
  storage_configuration: {
    type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER, S3_VECTORS
    opensearch_serverless_configuration: {
      collection_arn: "OpenSearchServerlessCollectionArn", # required
      vector_index_name: "OpenSearchServerlessIndexName", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    opensearch_managed_cluster_configuration: {
      domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
      domain_arn: "OpenSearchManagedClusterDomainArn", # required
      vector_index_name: "OpenSearchManagedClusterIndexName", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    pinecone_configuration: {
      connection_string: "PineconeConnectionString", # required
      credentials_secret_arn: "SecretArn", # required
      namespace: "PineconeNamespace",
      field_mapping: { # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    redis_enterprise_cloud_configuration: {
      endpoint: "RedisEnterpriseCloudEndpoint", # required
      vector_index_name: "RedisEnterpriseCloudIndexName", # required
      credentials_secret_arn: "SecretArn", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    rds_configuration: {
      resource_arn: "RdsArn", # required
      credentials_secret_arn: "SecretArn", # required
      database_name: "RdsDatabaseName", # required
      table_name: "RdsTableName", # required
      field_mapping: { # required
        primary_key_field: "ColumnName", # required
        vector_field: "ColumnName", # required
        text_field: "ColumnName", # required
        metadata_field: "ColumnName", # required
        custom_metadata_field: "ColumnName",
      },
    },
    mongo_db_atlas_configuration: {
      endpoint: "MongoDbAtlasEndpoint", # required
      database_name: "MongoDbAtlasDatabaseName", # required
      collection_name: "MongoDbAtlasCollectionName", # required
      vector_index_name: "MongoDbAtlasIndexName", # required
      credentials_secret_arn: "SecretArn", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
      endpoint_service_name: "MongoDbAtlasEndpointServiceName",
      text_index_name: "MongoDbAtlasIndexName",
    },
    neptune_analytics_configuration: {
      graph_arn: "GraphArn", # required
      field_mapping: { # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    s3_vectors_configuration: {
      vector_bucket_arn: "VectorBucketArn",
      index_arn: "IndexArn",
      index_name: "IndexName",
    },
  },
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.knowledge_base.knowledge_base_id #=> String
resp.knowledge_base.name #=> String
resp.knowledge_base.knowledge_base_arn #=> String
resp.knowledge_base.description #=> String
resp.knowledge_base.role_arn #=> String
resp.knowledge_base.knowledge_base_configuration.type #=> String, one of "VECTOR", "KENDRA", "SQL", "MANAGED"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_arn #=> String
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.dimensions #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.embedding_data_type #=> String, one of "FLOAT32", "BINARY"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].type #=> String, one of "S3"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].s3_location.uri #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_type #=> String, one of "CUSTOM", "MANAGED"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_arn #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.dimensions #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.embedding_data_type #=> String, one of "FLOAT32", "BINARY"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.server_side_encryption_configuration.kms_key_arn #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].type #=> String, one of "S3"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].s3_location.uri #=> String
resp.knowledge_base.knowledge_base_configuration.kendra_knowledge_base_configuration.kendra_index_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.type #=> String, one of "REDSHIFT"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].type #=> String, one of "REDSHIFT", "AWS_DATA_CATALOG"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].aws_data_catalog_configuration.table_names #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].aws_data_catalog_configuration.table_names[0] #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].redshift_configuration.database_name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.type #=> String, one of "SERVERLESS", "PROVISIONED"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.workgroup_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.auth_configuration.type #=> String, one of "IAM", "USERNAME_PASSWORD"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.auth_configuration.username_password_secret_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.cluster_identifier #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.type #=> String, one of "IAM", "USERNAME_PASSWORD", "USERNAME"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.database_user #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.username_password_secret_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.execution_timeout_seconds #=> Integer
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].description #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].inclusion #=> String, one of "INCLUDE", "EXCLUDE"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].description #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].inclusion #=> String, one of "INCLUDE", "EXCLUDE"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries[0].natural_language #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries[0].sql #=> String
resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.connection_string #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.endpoint #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.rds_configuration.resource_arn #=> String
resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
resp.knowledge_base.storage_configuration.rds_configuration.table_name #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.endpoint #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.database_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.collection_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.endpoint_service_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
resp.knowledge_base.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING", "FAILED", "DELETE_UNSUCCESSFUL", "UPDATE_UNSUCCESSFUL"
resp.knowledge_base.created_at #=> Time
resp.knowledge_base.updated_at #=> Time
resp.knowledge_base.failure_reasons #=> Array
resp.knowledge_base.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :name (required, String) —

    A name for the knowledge base.

  • :description (String) —

    A description of the knowledge base.

  • :role_arn (required, String) —

    The Amazon Resource Name (ARN) of the IAM role with permissions to invoke API operations on the knowledge base.

  • :knowledge_base_configuration (required, Types::KnowledgeBaseConfiguration) —

    Contains details about the embeddings model used for the knowledge base.

  • :storage_configuration (Types::StorageConfiguration) —

    Contains details about the configuration of the vector database used for the knowledge base.

  • :tags (Hash<String,String>) —

    Specify the key-value pairs for the tags that you want to attach to your knowledge base in this object.

Returns:

See Also:



2692
2693
2694
2695
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 2692

def create_knowledge_base(params = {}, options = {})
  req = build_request(:create_knowledge_base, params)
  req.send_request(options)
end

#create_prompt(params = {}) ⇒ Types::CreatePromptResponse

Creates a prompt in your prompt library that you can add to a flow. For more information, see Prompt management in Amazon Bedrock, Create a prompt using Prompt management and Prompt flows in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.create_prompt({
  name: "PromptName", # required
  description: "PromptDescription",
  customer_encryption_key_arn: "KmsKeyArn",
  default_variant: "PromptVariantName",
  variants: [
    {
      name: "PromptVariantName", # required
      template_type: "TEXT", # required, accepts TEXT, CHAT
      template_configuration: { # required
        text: {
          text: "TextPrompt", # required
          cache_point: {
            type: "default", # required, accepts default
          },
          input_variables: [
            {
              name: "PromptInputVariableName",
            },
          ],
        },
        chat: {
          messages: [ # required
            {
              role: "user", # required, accepts user, assistant
              content: [ # required
                {
                  text: "String",
                  cache_point: {
                    type: "default", # required, accepts default
                  },
                },
              ],
            },
          ],
          system: [
            {
              text: "NonEmptyString",
              cache_point: {
                type: "default", # required, accepts default
              },
            },
          ],
          input_variables: [
            {
              name: "PromptInputVariableName",
            },
          ],
          tool_configuration: {
            tools: [ # required
              {
                tool_spec: {
                  name: "ToolName", # required
                  description: "NonEmptyString",
                  input_schema: { # required
                    json: {
                    },
                  },
                  strict: false,
                },
                cache_point: {
                  type: "default", # required, accepts default
                },
              },
            ],
            tool_choice: {
              auto: {
              },
              any: {
              },
              tool: {
                name: "ToolName", # required
              },
            },
          },
        },
      },
      model_id: "PromptModelIdentifier",
      inference_configuration: {
        text: {
          temperature: 1.0,
          top_p: 1.0,
          max_tokens: 1,
          stop_sequences: ["String"],
        },
      },
      metadata: [
        {
          key: "PromptMetadataKey", # required
          value: "PromptMetadataValue", # required
        },
      ],
      additional_model_request_fields: {
      },
      gen_ai_resource: {
        agent: {
          agent_identifier: "AgentAliasArn", # required
        },
      },
    },
  ],
  client_token: "ClientToken",
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.name #=> String
resp.description #=> String
resp.customer_encryption_key_arn #=> String
resp.default_variant #=> String
resp.variants #=> Array
resp.variants[0].name #=> String
resp.variants[0].template_type #=> String, one of "TEXT", "CHAT"
resp.variants[0].template_configuration.text.text #=> String
resp.variants[0].template_configuration.text.cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.text.input_variables #=> Array
resp.variants[0].template_configuration.text.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.messages #=> Array
resp.variants[0].template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.variants[0].template_configuration.chat.messages[0].content #=> Array
resp.variants[0].template_configuration.chat.messages[0].content[0].text #=> String
resp.variants[0].template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.system #=> Array
resp.variants[0].template_configuration.chat.system[0].text #=> String
resp.variants[0].template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.input_variables #=> Array
resp.variants[0].template_configuration.chat.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools #=> Array
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.variants[0].model_id #=> String
resp.variants[0].inference_configuration.text.temperature #=> Float
resp.variants[0].inference_configuration.text.top_p #=> Float
resp.variants[0].inference_configuration.text.max_tokens #=> Integer
resp.variants[0].inference_configuration.text.stop_sequences #=> Array
resp.variants[0].inference_configuration.text.stop_sequences[0] #=> String
resp.variants[0]. #=> Array
resp.variants[0].[0].key #=> String
resp.variants[0].[0].value #=> String
resp.variants[0].gen_ai_resource.agent.agent_identifier #=> String
resp.id #=> String
resp.arn #=> String
resp.version #=> String
resp.created_at #=> Time
resp.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :name (required, String) —

    A name for the prompt.

  • :description (String) —

    A description for the prompt.

  • :customer_encryption_key_arn (String) —

    The Amazon Resource Name (ARN) of the KMS key to encrypt the prompt.

  • :default_variant (String) —

    The name of the default variant for the prompt. This value must match the name field in the relevant PromptVariant object.

  • :variants (Array<Types::PromptVariant>) —

    A list of objects, each containing details about a variant of the prompt.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :tags (Hash<String,String>) —

    Any tags that you want to attach to the prompt. For more information, see Tagging resources in Amazon Bedrock.

Returns:

See Also:



2921
2922
2923
2924
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 2921

def create_prompt(params = {}, options = {})
  req = build_request(:create_prompt, params)
  req.send_request(options)
end

#create_prompt_version(params = {}) ⇒ Types::CreatePromptVersionResponse

Creates a static snapshot of your prompt that can be deployed to production. For more information, see Deploy prompts using Prompt management by creating versions in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.create_prompt_version({
  prompt_identifier: "PromptIdentifier", # required
  description: "PromptDescription",
  client_token: "ClientToken",
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.name #=> String
resp.description #=> String
resp.customer_encryption_key_arn #=> String
resp.default_variant #=> String
resp.variants #=> Array
resp.variants[0].name #=> String
resp.variants[0].template_type #=> String, one of "TEXT", "CHAT"
resp.variants[0].template_configuration.text.text #=> String
resp.variants[0].template_configuration.text.cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.text.input_variables #=> Array
resp.variants[0].template_configuration.text.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.messages #=> Array
resp.variants[0].template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.variants[0].template_configuration.chat.messages[0].content #=> Array
resp.variants[0].template_configuration.chat.messages[0].content[0].text #=> String
resp.variants[0].template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.system #=> Array
resp.variants[0].template_configuration.chat.system[0].text #=> String
resp.variants[0].template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.input_variables #=> Array
resp.variants[0].template_configuration.chat.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools #=> Array
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.variants[0].model_id #=> String
resp.variants[0].inference_configuration.text.temperature #=> Float
resp.variants[0].inference_configuration.text.top_p #=> Float
resp.variants[0].inference_configuration.text.max_tokens #=> Integer
resp.variants[0].inference_configuration.text.stop_sequences #=> Array
resp.variants[0].inference_configuration.text.stop_sequences[0] #=> String
resp.variants[0]. #=> Array
resp.variants[0].[0].key #=> String
resp.variants[0].[0].value #=> String
resp.variants[0].gen_ai_resource.agent.agent_identifier #=> String
resp.id #=> String
resp.arn #=> String
resp.version #=> String
resp.created_at #=> Time
resp.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :prompt_identifier (required, String) —

    The unique identifier of the prompt that you want to create a version of.

  • :description (String) —

    A description for the version of the prompt.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :tags (Hash<String,String>) —

    Any tags that you want to attach to the version of the prompt. For more information, see Tagging resources in Amazon Bedrock.

Returns:

See Also:



3035
3036
3037
3038
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3035

def create_prompt_version(params = {}, options = {})
  req = build_request(:create_prompt_version, params)
  req.send_request(options)
end

#create_vpc_configuration(params = {}) ⇒ Types::CreateVpcConfigurationResponse

Creates a VPC configuration that lets a knowledge base connect to a resource in your private VPC. This operation is asynchronous: it returns a vpcConfigurationId with status CREATING. Poll GetVpcConfiguration until the status becomes CREATED or CREATE_FAILED.

Examples:

Request syntax with placeholder values


resp = client.create_vpc_configuration({
  knowledge_base_id: "Id", # required
  client_token: "ClientToken",
  vpc_id: "VpcId", # required
  subnet_ids: ["SubnetId"], # required
  resource_target: "ResourceTarget", # required
  port: 1, # required
  protocol: "HTTP", # required, accepts HTTP, HTTPS
  resolution_mode: "PUBLIC", # required, accepts PUBLIC, IN_VPC
  host_header: "HostHeader",
  tls_server_name: "TlsServerName",
  name: "VpcConfigurationName",
  description: "VpcConfigurationDescription",
})

Response structure


resp.vpc_configuration_id #=> String
resp.status #=> String, one of "CREATING", "CREATED", "DELETING", "CREATE_FAILED", "DELETE_FAILED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base to associate this VPC configuration with.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, the service ignores the request but does not return an error.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :vpc_id (required, String) —

    The identifier of the VPC that the knowledge base connects through to reach the resource.

  • :subnet_ids (required, Array<String>) —

    The subnets, in the VPC identified by vpcId, that the knowledge base uses to connect to the resource.

  • :resource_target (required, String) —

    The private IPv4 address or DNS name of the resource you want the knowledge base to reach. The target must be privately reachable from inside your VPC, such as an internal load balancer or a private IP. The following are not supported:

    • Internet-facing endpoints

    • Loopback addresses

    • Link-local addresses

    • Wildcard addresses

    • Multicast addresses

    • IPv6 literals

  • :port (required, Integer) —

    The port on which to reach the resource.

  • :protocol (required, String) —

    The protocol used to connect to the resource. Specify HTTP for plaintext or HTTPS for TLS. When you specify HTTPS, you must also provide tlsServerName.

  • :resolution_mode (required, String) —

    Controls how a domain-name resourceTarget is resolved. This applies only when the target is a domain name; it has no effect for IP-address targets, which have no name to resolve. In all cases the resolved address must be reachable from inside your VPC. Valid values:

    • IN_VPC (default, recommended) – The target domain name is resolved privately, using the DNS resolvers of the VPC, such as private Route 53 hosted zones or on-premises DNS reachable from the VPC. Use this for targets that are private to your VPC, such as internal load balancers, private hosted-zone names, or on-premises hosts.

    • PUBLIC – The target domain name is resolved against public DNS resolvers. Select this only when the target's domain name must be resolved through public DNS and the resulting address is still reachable from the VPC, an uncommon split-horizon configuration. If you are unsure, use IN_VPC.

  • :host_header (String) —

    An optional HTTP Host header value to send when invoking the resource. Set this only if your resource (or an upstream router or ingress) routes by the Host header and that host differs from the target. This setting is independent of tlsServerName.

  • :tls_server_name (String) —

    The expected TLS server name. The service matches this value against the Subject Alternative Names on your resource's TLS certificate during invocation. This field is required when protocol is HTTPS. Set it to a hostname on your certificate, such as app.internal.example.com. You can use a single leftmost wildcard, such as *.example.com. The value must be a hostname without a port.

  • :name (String) —

    An optional human-readable name for the VPC configuration. If you don't specify a name, the VPC configuration has no name.

  • :description (String) —

    An optional description of the VPC configuration. If you don't specify a description, the VPC configuration has no description.

Returns:

See Also:



3163
3164
3165
3166
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3163

def create_vpc_configuration(params = {}, options = {})
  req = build_request(:create_vpc_configuration, params)
  req.send_request(options)
end

#delete_agent(params = {}) ⇒ Types::DeleteAgentResponse

Deletes an agent.

Examples:

Request syntax with placeholder values


resp = client.delete_agent({
  agent_id: "Id", # required
  skip_resource_in_use_check: false,
})

Response structure


resp.agent_id #=> String
resp.agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent to delete.

  • :skip_resource_in_use_check (Boolean) —

    By default, this value is false and deletion is stopped if the resource is in use. If you set it to true, the resource will be deleted even if the resource is in use.

Returns:

See Also:



3199
3200
3201
3202
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3199

def delete_agent(params = {}, options = {})
  req = build_request(:delete_agent, params)
  req.send_request(options)
end

#delete_agent_action_group(params = {}) ⇒ Struct

Deletes an action group in an agent.

Examples:

Request syntax with placeholder values


resp = client.delete_agent_action_group({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  action_group_id: "Id", # required
  skip_resource_in_use_check: false,
})

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent that the action group belongs to.

  • :agent_version (required, String) —

    The version of the agent that the action group belongs to.

  • :action_group_id (required, String) —

    The unique identifier of the action group to delete.

  • :skip_resource_in_use_check (Boolean) —

    By default, this value is false and deletion is stopped if the resource is in use. If you set it to true, the resource will be deleted even if the resource is in use.

Returns:

  • (Struct) —

    Returns an empty response.

See Also:



3235
3236
3237
3238
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3235

def delete_agent_action_group(params = {}, options = {})
  req = build_request(:delete_agent_action_group, params)
  req.send_request(options)
end

#delete_agent_alias(params = {}) ⇒ Types::DeleteAgentAliasResponse

Deletes an alias of an agent.

Examples:

Request syntax with placeholder values


resp = client.delete_agent_alias({
  agent_id: "Id", # required
  agent_alias_id: "AgentAliasId", # required
})

Response structure


resp.agent_id #=> String
resp.agent_alias_id #=> String
resp.agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent that the alias belongs to.

  • :agent_alias_id (required, String) —

    The unique identifier of the alias to delete.

Returns:

See Also:



3271
3272
3273
3274
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3271

def delete_agent_alias(params = {}, options = {})
  req = build_request(:delete_agent_alias, params)
  req.send_request(options)
end

#delete_agent_version(params = {}) ⇒ Types::DeleteAgentVersionResponse

Deletes a version of an agent.

Examples:

Request syntax with placeholder values


resp = client.delete_agent_version({
  agent_id: "Id", # required
  agent_version: "NumericalVersion", # required
  skip_resource_in_use_check: false,
})

Response structure


resp.agent_id #=> String
resp.agent_version #=> String
resp.agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent that the version belongs to.

  • :agent_version (required, String) —

    The version of the agent to delete.

  • :skip_resource_in_use_check (Boolean) —

    By default, this value is false and deletion is stopped if the resource is in use. If you set it to true, the resource will be deleted even if the resource is in use.

Returns:

See Also:



3313
3314
3315
3316
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3313

def delete_agent_version(params = {}, options = {})
  req = build_request(:delete_agent_version, params)
  req.send_request(options)
end

#delete_data_source(params = {}) ⇒ Types::DeleteDataSourceResponse

Deletes a data source from a knowledge base.

Examples:

Request syntax with placeholder values


resp = client.delete_data_source({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
})

Response structure


resp.knowledge_base_id #=> String
resp.data_source_id #=> String
resp.status #=> String, one of "AVAILABLE", "DELETING", "DELETE_UNSUCCESSFUL", "CREATING", "UPDATING", "FAILED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base from which to delete the data source.

  • :data_source_id (required, String) —

    The unique identifier of the data source to delete.

Returns:

See Also:



3350
3351
3352
3353
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3350

def delete_data_source(params = {}, options = {})
  req = build_request(:delete_data_source, params)
  req.send_request(options)
end

#delete_flow(params = {}) ⇒ Types::DeleteFlowResponse

Deletes a flow.

Examples:

Request syntax with placeholder values


resp = client.delete_flow({
  flow_identifier: "FlowIdentifier", # required
  skip_resource_in_use_check: false,
})

Response structure


resp.id #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow.

  • :skip_resource_in_use_check (Boolean) —

    By default, this value is false and deletion is stopped if the resource is in use. If you set it to true, the resource will be deleted even if the resource is in use.

Returns:

See Also:



3384
3385
3386
3387
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3384

def delete_flow(params = {}, options = {})
  req = build_request(:delete_flow, params)
  req.send_request(options)
end

#delete_flow_alias(params = {}) ⇒ Types::DeleteFlowAliasResponse

Deletes an alias of a flow.

Examples:

Request syntax with placeholder values


resp = client.delete_flow_alias({
  flow_identifier: "FlowIdentifier", # required
  alias_identifier: "FlowAliasIdentifier", # required
})

Response structure


resp.flow_id #=> String
resp.id #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow that the alias belongs to.

  • :alias_identifier (required, String) —

    The unique identifier of the alias to be deleted.

Returns:

See Also:



3418
3419
3420
3421
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3418

def delete_flow_alias(params = {}, options = {})
  req = build_request(:delete_flow_alias, params)
  req.send_request(options)
end

#delete_flow_version(params = {}) ⇒ Types::DeleteFlowVersionResponse

Deletes a version of a flow.

Examples:

Request syntax with placeholder values


resp = client.delete_flow_version({
  flow_identifier: "FlowIdentifier", # required
  flow_version: "NumericalVersion", # required
  skip_resource_in_use_check: false,
})

Response structure


resp.id #=> String
resp.version #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow whose version that you want to delete

  • :flow_version (required, String) —

    The version of the flow that you want to delete.

  • :skip_resource_in_use_check (Boolean) —

    By default, this value is false and deletion is stopped if the resource is in use. If you set it to true, the resource will be deleted even if the resource is in use.

Returns:

See Also:



3459
3460
3461
3462
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3459

def delete_flow_version(params = {}, options = {})
  req = build_request(:delete_flow_version, params)
  req.send_request(options)
end

#delete_knowledge_base(params = {}) ⇒ Types::DeleteKnowledgeBaseResponse

Deletes a knowledge base. Before deleting a knowledge base, you should disassociate the knowledge base from any agents that it is associated with by making a DisassociateAgentKnowledgeBase request.

Examples:

Request syntax with placeholder values


resp = client.delete_knowledge_base({
  knowledge_base_id: "Id", # required
})

Response structure


resp.knowledge_base_id #=> String
resp.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING", "FAILED", "DELETE_UNSUCCESSFUL", "UPDATE_UNSUCCESSFUL"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base to delete.

Returns:

See Also:



3495
3496
3497
3498
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3495

def delete_knowledge_base(params = {}, options = {})
  req = build_request(:delete_knowledge_base, params)
  req.send_request(options)
end

#delete_knowledge_base_documents(params = {}) ⇒ Types::DeleteKnowledgeBaseDocumentsResponse

Deletes documents from a data source and syncs the changes to the knowledge base that is connected to it. For more information, see Ingest changes directly into a knowledge base in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.delete_knowledge_base_documents({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  client_token: "ClientToken",
  document_identifiers: [ # required
    {
      data_source_type: "CUSTOM", # required, accepts CUSTOM, S3
      s3: {
        uri: "S3BucketUri", # required
      },
      custom: {
        id: "CustomDocumentIdentifierIdString", # required
      },
    },
  ],
})

Response structure


resp.document_details #=> Array
resp.document_details[0].knowledge_base_id #=> String
resp.document_details[0].data_source_id #=> String
resp.document_details[0].status #=> String, one of "INDEXED", "PARTIALLY_INDEXED", "PENDING", "FAILED", "METADATA_PARTIALLY_INDEXED", "METADATA_UPDATE_FAILED", "IGNORED", "NOT_FOUND", "STARTING", "IN_PROGRESS", "DELETING", "DELETE_IN_PROGRESS"
resp.document_details[0].identifier.data_source_type #=> String, one of "CUSTOM", "S3"
resp.document_details[0].identifier.s3.uri #=> String
resp.document_details[0].identifier.custom.id #=> String
resp.document_details[0].status_reason #=> String
resp.document_details[0].updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base that is connected to the data source.

  • :data_source_id (required, String) —

    The unique identifier of the data source that contains the documents.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :document_identifiers (required, Array<Types::DocumentIdentifier>) —

    A list of objects, each of which contains information to identify a document to delete.

Returns:

See Also:



3572
3573
3574
3575
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3572

def delete_knowledge_base_documents(params = {}, options = {})
  req = build_request(:delete_knowledge_base_documents, params)
  req.send_request(options)
end

#delete_prompt(params = {}) ⇒ Types::DeletePromptResponse

Deletes a prompt or a version of it, depending on whether you include the promptVersion field or not. For more information, see Delete prompts from the Prompt management tool and Delete a version of a prompt from the Prompt management tool in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.delete_prompt({
  prompt_identifier: "PromptIdentifier", # required
  prompt_version: "NumericalVersion",
})

Response structure


resp.id #=> String
resp.version #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :prompt_identifier (required, String) —

    The unique identifier of the prompt.

  • :prompt_version (String) —

    The version of the prompt to delete. To delete the prompt, omit this field.

Returns:

See Also:



3616
3617
3618
3619
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3616

def delete_prompt(params = {}, options = {})
  req = build_request(:delete_prompt, params)
  req.send_request(options)
end

#delete_resource_policy(params = {}) ⇒ Types::DeleteResourcePolicyResponse

Removes the resource policy associated with a knowledge base. After deletion, other AWS accounts can no longer access the knowledge base using cross-account permissions.

Examples:

Request syntax with placeholder values


resp = client.delete_resource_policy({
  resource_arn: "ResourceArn", # required
  expected_revision_id: "RevisionId",
})

Response structure


resp.resource_arn #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :resource_arn (required, String) —

    The Amazon Resource Name (ARN) of the knowledge base to remove the resource policy from.

  • :expected_revision_id (String) —

    The expected revision identifier of the resource policy. Use this to prevent conflicts when multiple users update the same policy concurrently.

Returns:

See Also:



3655
3656
3657
3658
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3655

def delete_resource_policy(params = {}, options = {})
  req = build_request(:delete_resource_policy, params)
  req.send_request(options)
end

#delete_vpc_configuration(params = {}) ⇒ Types::DeleteVpcConfigurationResponse

Deletes a VPC configuration. This operation is asynchronous: it returns status DELETING. Poll GetVpcConfiguration until it returns a ResourceNotFoundException, indicating the configuration is deleted. Delete requests are idempotent and safe to retry.

Examples:

Request syntax with placeholder values


resp = client.delete_vpc_configuration({
  knowledge_base_id: "Id", # required
  vpc_configuration_id: "VpcConfigurationId", # required
})

Response structure


resp.vpc_configuration_id #=> String
resp.status #=> String, one of "CREATING", "CREATED", "DELETING", "CREATE_FAILED", "DELETE_FAILED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base that owns the VPC configuration.

  • :vpc_configuration_id (required, String) —

    The unique identifier of the VPC configuration to delete.

Returns:

See Also:



3693
3694
3695
3696
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3693

def delete_vpc_configuration(params = {}, options = {})
  req = build_request(:delete_vpc_configuration, params)
  req.send_request(options)
end

#disassociate_agent_collaborator(params = {}) ⇒ Struct

Disassociates an agent collaborator.

Examples:

Request syntax with placeholder values


resp = client.disassociate_agent_collaborator({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  collaborator_id: "Id", # required
})

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    An agent ID.

  • :agent_version (required, String) —

    The agent's version.

  • :collaborator_id (required, String) —

    The collaborator's ID.

Returns:

  • (Struct) —

    Returns an empty response.

See Also:



3723
3724
3725
3726
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3723

def disassociate_agent_collaborator(params = {}, options = {})
  req = build_request(:disassociate_agent_collaborator, params)
  req.send_request(options)
end

#disassociate_agent_knowledge_base(params = {}) ⇒ Struct

Disassociates a knowledge base from an agent.

Examples:

Request syntax with placeholder values


resp = client.disassociate_agent_knowledge_base({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  knowledge_base_id: "Id", # required
})

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent from which to disassociate the knowledge base.

  • :agent_version (required, String) —

    The version of the agent from which to disassociate the knowledge base.

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base to disassociate.

Returns:

  • (Struct) —

    Returns an empty response.

See Also:



3755
3756
3757
3758
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3755

def disassociate_agent_knowledge_base(params = {}, options = {})
  req = build_request(:disassociate_agent_knowledge_base, params)
  req.send_request(options)
end

#get_agent(params = {}) ⇒ Types::GetAgentResponse

Gets information about an agent.

Examples:

Request syntax with placeholder values


resp = client.get_agent({
  agent_id: "Id", # required
})

Response structure


resp.agent.agent_id #=> String
resp.agent.agent_name #=> String
resp.agent.agent_arn #=> String
resp.agent.agent_version #=> String
resp.agent.client_token #=> String
resp.agent.instruction #=> String
resp.agent.agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"
resp.agent.foundation_model #=> String
resp.agent.description #=> String
resp.agent.orchestration_type #=> String, one of "DEFAULT", "CUSTOM_ORCHESTRATION"
resp.agent.custom_orchestration.executor.lambda #=> String
resp.agent.idle_session_ttl_in_seconds #=> Integer
resp.agent.agent_resource_role_arn #=> String
resp.agent.customer_encryption_key_arn #=> String
resp.agent.created_at #=> Time
resp.agent.updated_at #=> Time
resp.agent.prepared_at #=> Time
resp.agent.failure_reasons #=> Array
resp.agent.failure_reasons[0] #=> String
resp.agent.recommended_actions #=> Array
resp.agent.recommended_actions[0] #=> String
resp.agent.prompt_override_configuration.prompt_configurations #=> Array
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_type #=> String, one of "PRE_PROCESSING", "ORCHESTRATION", "POST_PROCESSING", "KNOWLEDGE_BASE_RESPONSE_GENERATION", "MEMORY_SUMMARIZATION"
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_creation_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_state #=> String, one of "ENABLED", "DISABLED"
resp.agent.prompt_override_configuration.prompt_configurations[0].base_prompt_template #=> String
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.temperature #=> Float
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_p #=> Float
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_k #=> Integer
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.maximum_length #=> Integer
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences #=> Array
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences[0] #=> String
resp.agent.prompt_override_configuration.prompt_configurations[0].parser_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent.prompt_override_configuration.prompt_configurations[0].foundation_model #=> String
resp.agent.prompt_override_configuration.override_lambda #=> String
resp.agent.guardrail_configuration.guardrail_identifier #=> String
resp.agent.guardrail_configuration.guardrail_version #=> String
resp.agent.memory_configuration.enabled_memory_types #=> Array
resp.agent.memory_configuration.enabled_memory_types[0] #=> String, one of "SESSION_SUMMARY"
resp.agent.memory_configuration.storage_days #=> Integer
resp.agent.memory_configuration.session_summary_configuration.max_recent_sessions #=> Integer
resp.agent.agent_collaboration #=> String, one of "SUPERVISOR", "SUPERVISOR_ROUTER", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

Returns:

See Also:



3824
3825
3826
3827
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3824

def get_agent(params = {}, options = {})
  req = build_request(:get_agent, params)
  req.send_request(options)
end

#get_agent_action_group(params = {}) ⇒ Types::GetAgentActionGroupResponse

Gets information about an action group for an agent.

Examples:

Request syntax with placeholder values


resp = client.get_agent_action_group({
  agent_id: "Id", # required
  agent_version: "Version", # required
  action_group_id: "Id", # required
})

Response structure


resp.agent_action_group.agent_id #=> String
resp.agent_action_group.agent_version #=> String
resp.agent_action_group.action_group_id #=> String
resp.agent_action_group.action_group_name #=> String
resp.agent_action_group.client_token #=> String
resp.agent_action_group.description #=> String
resp.agent_action_group.created_at #=> Time
resp.agent_action_group.updated_at #=> Time
resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter", "ANTHROPIC.Computer", "ANTHROPIC.Bash", "ANTHROPIC.TextEditor"
resp.agent_action_group.parent_action_group_signature_params #=> Hash
resp.agent_action_group.parent_action_group_signature_params["ActionGroupSignatureParamsKeyString"] #=> String
resp.agent_action_group.action_group_executor.lambda #=> String
resp.agent_action_group.action_group_executor.custom_control #=> String, one of "RETURN_CONTROL"
resp.agent_action_group.api_schema.s3.s3_bucket_name #=> String
resp.agent_action_group.api_schema.s3.s3_object_key #=> String
resp.agent_action_group.api_schema.payload #=> String
resp.agent_action_group.function_schema.functions #=> Array
resp.agent_action_group.function_schema.functions[0].name #=> String
resp.agent_action_group.function_schema.functions[0].description #=> String
resp.agent_action_group.function_schema.functions[0].parameters #=> Hash
resp.agent_action_group.function_schema.functions[0].parameters["Name"].description #=> String
resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
resp.agent_action_group.action_group_state #=> String, one of "ENABLED", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent that the action group belongs to.

  • :agent_version (required, String) —

    The version of the agent that the action group belongs to.

  • :action_group_id (required, String) —

    The unique identifier of the action group for which to get information.

Returns:

See Also:



3885
3886
3887
3888
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3885

def get_agent_action_group(params = {}, options = {})
  req = build_request(:get_agent_action_group, params)
  req.send_request(options)
end

#get_agent_alias(params = {}) ⇒ Types::GetAgentAliasResponse

Gets information about an alias of an agent.

Examples:

Request syntax with placeholder values


resp = client.get_agent_alias({
  agent_id: "Id", # required
  agent_alias_id: "AgentAliasId", # required
})

Response structure


resp.agent_alias.agent_id #=> String
resp.agent_alias.agent_alias_id #=> String
resp.agent_alias.agent_alias_name #=> String
resp.agent_alias.agent_alias_arn #=> String
resp.agent_alias.client_token #=> String
resp.agent_alias.description #=> String
resp.agent_alias.routing_configuration #=> Array
resp.agent_alias.routing_configuration[0].agent_version #=> String
resp.agent_alias.routing_configuration[0].provisioned_throughput #=> String
resp.agent_alias.created_at #=> Time
resp.agent_alias.updated_at #=> Time
resp.agent_alias.agent_alias_history_events #=> Array
resp.agent_alias.agent_alias_history_events[0].routing_configuration #=> Array
resp.agent_alias.agent_alias_history_events[0].routing_configuration[0].agent_version #=> String
resp.agent_alias.agent_alias_history_events[0].routing_configuration[0].provisioned_throughput #=> String
resp.agent_alias.agent_alias_history_events[0].end_date #=> Time
resp.agent_alias.agent_alias_history_events[0].start_date #=> Time
resp.agent_alias.agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
resp.agent_alias.failure_reasons #=> Array
resp.agent_alias.failure_reasons[0] #=> String
resp.agent_alias.alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent to which the alias to get information belongs.

  • :agent_alias_id (required, String) —

    The unique identifier of the alias for which to get information.

Returns:

See Also:



3938
3939
3940
3941
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3938

def get_agent_alias(params = {}, options = {})
  req = build_request(:get_agent_alias, params)
  req.send_request(options)
end

#get_agent_collaborator(params = {}) ⇒ Types::GetAgentCollaboratorResponse

Retrieves information about an agent's collaborator.

Examples:

Request syntax with placeholder values


resp = client.get_agent_collaborator({
  agent_id: "Id", # required
  agent_version: "Version", # required
  collaborator_id: "Id", # required
})

Response structure


resp.agent_collaborator.agent_id #=> String
resp.agent_collaborator.agent_version #=> String
resp.agent_collaborator.agent_descriptor.alias_arn #=> String
resp.agent_collaborator.collaborator_id #=> String
resp.agent_collaborator.collaboration_instruction #=> String
resp.agent_collaborator.collaborator_name #=> String
resp.agent_collaborator.created_at #=> Time
resp.agent_collaborator.last_updated_at #=> Time
resp.agent_collaborator.relay_conversation_history #=> String, one of "TO_COLLABORATOR", "DISABLED"
resp.agent_collaborator.client_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The agent's ID.

  • :agent_version (required, String) —

    The agent's version.

  • :collaborator_id (required, String) —

    The collaborator's ID.

Returns:

See Also:



3983
3984
3985
3986
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 3983

def get_agent_collaborator(params = {}, options = {})
  req = build_request(:get_agent_collaborator, params)
  req.send_request(options)
end

#get_agent_knowledge_base(params = {}) ⇒ Types::GetAgentKnowledgeBaseResponse

Gets information about a knowledge base associated with an agent.

Examples:

Request syntax with placeholder values


resp = client.get_agent_knowledge_base({
  agent_id: "Id", # required
  agent_version: "Version", # required
  knowledge_base_id: "Id", # required
})

Response structure


resp.agent_knowledge_base.agent_id #=> String
resp.agent_knowledge_base.agent_version #=> String
resp.agent_knowledge_base.knowledge_base_id #=> String
resp.agent_knowledge_base.description #=> String
resp.agent_knowledge_base.created_at #=> Time
resp.agent_knowledge_base.updated_at #=> Time
resp.agent_knowledge_base.knowledge_base_state #=> String, one of "ENABLED", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent with which the knowledge base is associated.

  • :agent_version (required, String) —

    The version of the agent with which the knowledge base is associated.

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base associated with the agent.

Returns:

See Also:



4026
4027
4028
4029
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4026

def get_agent_knowledge_base(params = {}, options = {})
  req = build_request(:get_agent_knowledge_base, params)
  req.send_request(options)
end

#get_agent_version(params = {}) ⇒ Types::GetAgentVersionResponse

Gets details about a version of an agent.

Examples:

Request syntax with placeholder values


resp = client.get_agent_version({
  agent_id: "Id", # required
  agent_version: "NumericalVersion", # required
})

Response structure


resp.agent_version.agent_id #=> String
resp.agent_version.agent_name #=> String
resp.agent_version.agent_arn #=> String
resp.agent_version.version #=> String
resp.agent_version.instruction #=> String
resp.agent_version.agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"
resp.agent_version.foundation_model #=> String
resp.agent_version.description #=> String
resp.agent_version.idle_session_ttl_in_seconds #=> Integer
resp.agent_version.agent_resource_role_arn #=> String
resp.agent_version.customer_encryption_key_arn #=> String
resp.agent_version.created_at #=> Time
resp.agent_version.updated_at #=> Time
resp.agent_version.failure_reasons #=> Array
resp.agent_version.failure_reasons[0] #=> String
resp.agent_version.recommended_actions #=> Array
resp.agent_version.recommended_actions[0] #=> String
resp.agent_version.prompt_override_configuration.prompt_configurations #=> Array
resp.agent_version.prompt_override_configuration.prompt_configurations[0].prompt_type #=> String, one of "PRE_PROCESSING", "ORCHESTRATION", "POST_PROCESSING", "KNOWLEDGE_BASE_RESPONSE_GENERATION", "MEMORY_SUMMARIZATION"
resp.agent_version.prompt_override_configuration.prompt_configurations[0].prompt_creation_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent_version.prompt_override_configuration.prompt_configurations[0].prompt_state #=> String, one of "ENABLED", "DISABLED"
resp.agent_version.prompt_override_configuration.prompt_configurations[0].base_prompt_template #=> String
resp.agent_version.prompt_override_configuration.prompt_configurations[0].inference_configuration.temperature #=> Float
resp.agent_version.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_p #=> Float
resp.agent_version.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_k #=> Integer
resp.agent_version.prompt_override_configuration.prompt_configurations[0].inference_configuration.maximum_length #=> Integer
resp.agent_version.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences #=> Array
resp.agent_version.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences[0] #=> String
resp.agent_version.prompt_override_configuration.prompt_configurations[0].parser_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent_version.prompt_override_configuration.prompt_configurations[0].foundation_model #=> String
resp.agent_version.prompt_override_configuration.override_lambda #=> String
resp.agent_version.guardrail_configuration.guardrail_identifier #=> String
resp.agent_version.guardrail_configuration.guardrail_version #=> String
resp.agent_version.memory_configuration.enabled_memory_types #=> Array
resp.agent_version.memory_configuration.enabled_memory_types[0] #=> String, one of "SESSION_SUMMARY"
resp.agent_version.memory_configuration.storage_days #=> Integer
resp.agent_version.memory_configuration.session_summary_configuration.max_recent_sessions #=> Integer
resp.agent_version.agent_collaboration #=> String, one of "SUPERVISOR", "SUPERVISOR_ROUTER", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

  • :agent_version (required, String) —

    The version of the agent.

Returns:

See Also:



4095
4096
4097
4098
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4095

def get_agent_version(params = {}, options = {})
  req = build_request(:get_agent_version, params)
  req.send_request(options)
end

#get_data_source(params = {}) ⇒ Types::GetDataSourceResponse

Gets information about a data source.

Examples:

Request syntax with placeholder values


resp = client.get_data_source({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
})

Response structure


resp.data_source.knowledge_base_id #=> String
resp.data_source.data_source_id #=> String
resp.data_source.name #=> String
resp.data_source.status #=> String, one of "AVAILABLE", "DELETING", "DELETE_UNSUCCESSFUL", "CREATING", "UPDATING", "FAILED"
resp.data_source.description #=> String
resp.data_source.data_source_configuration.type #=> String, one of "S3", "WEB", "CONFLUENCE", "SALESFORCE", "SHAREPOINT", "CUSTOM", "REDSHIFT_METADATA", "MANAGED_KNOWLEDGE_BASE_CONNECTOR"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.deletion_protection_configuration.deletion_protection_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.deletion_protection_configuration.deletion_protection_threshold #=> Integer
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.image_extraction_configuration.image_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.audio_extraction_configuration.audio_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.video_extraction_configuration.video_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.sync_schedule.weekly.day_of_week #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.sync_schedule.monthly.day_of_month.day_number #=> Integer
resp.data_source.data_source_configuration.s3_configuration.bucket_arn #=> String
resp.data_source.data_source_configuration.s3_configuration.inclusion_prefixes #=> Array
resp.data_source.data_source_configuration.s3_configuration.inclusion_prefixes[0] #=> String
resp.data_source.data_source_configuration.s3_configuration. #=> String
resp.data_source.data_source_configuration.web_configuration.source_configuration.url_configuration.seed_urls #=> Array
resp.data_source.data_source_configuration.web_configuration.source_configuration.url_configuration.seed_urls[0].url #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.crawler_limits.rate_limit #=> Integer
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.crawler_limits.max_pages #=> Integer
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.inclusion_filters #=> Array
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.exclusion_filters #=> Array
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.scope #=> String, one of "HOST_ONLY", "SUBDOMAINS"
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.user_agent #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.user_agent_header #=> String
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.host_url #=> String
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.host_type #=> String, one of "SAAS"
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.auth_type #=> String, one of "BASIC", "OAUTH2_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.host_url #=> String
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.auth_type #=> String, one of "OAUTH2_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.tenant_id #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.domain #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.site_urls #=> Array
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.site_urls[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.host_type #=> String, one of "ONLINE"
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.auth_type #=> String, one of "OAUTH2_CLIENT_CREDENTIALS", "OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.server_side_encryption_configuration.kms_key_arn #=> String
resp.data_source.vector_ingestion_configuration.chunking_configuration.chunking_strategy #=> String, one of "FIXED_SIZE", "NONE", "HIERARCHICAL", "SEMANTIC"
resp.data_source.vector_ingestion_configuration.chunking_configuration.fixed_size_chunking_configuration.max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.fixed_size_chunking_configuration.overlap_percentage #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.level_configurations #=> Array
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.level_configurations[0].max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.overlap_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.buffer_size #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.breakpoint_percentile_threshold #=> Integer
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.intermediate_storage.s3_location.uri #=> String
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations #=> Array
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations[0].transformation_function.transformation_lambda_configuration.lambda_arn #=> String
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations[0].step_to_apply #=> String, one of "POST_CHUNKING"
resp.data_source.vector_ingestion_configuration.parsing_configuration.parsing_strategy #=> String, one of "BEDROCK_FOUNDATION_MODEL", "BEDROCK_DATA_AUTOMATION", "SMART_PARSING", "MULTI_MODAL_EMBEDDINGS"
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.model_arn #=> String
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.parsing_prompt.parsing_prompt_text #=> String
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.parsing_modality #=> String, one of "MULTIMODAL"
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_data_automation_configuration.parsing_modality #=> String, one of "MULTIMODAL"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.type #=> String, one of "BEDROCK_FOUNDATION_MODEL"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.bedrock_foundation_model_configuration.enrichment_strategy_configuration.method #=> String, one of "CHUNK_ENTITY_EXTRACTION"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.bedrock_foundation_model_configuration.model_arn #=> String
resp.data_source.data_deletion_policy #=> String, one of "RETAIN", "DELETE"
resp.data_source.created_at #=> Time
resp.data_source.updated_at #=> Time
resp.data_source.failure_reasons #=> Array
resp.data_source.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base for the data source.

  • :data_source_id (required, String) —

    The unique identifier of the data source.

Returns:

See Also:



4216
4217
4218
4219
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4216

def get_data_source(params = {}, options = {})
  req = build_request(:get_data_source, params)
  req.send_request(options)
end

#get_flow(params = {}) ⇒ Types::GetFlowResponse

Retrieves information about a flow. For more information, see Manage a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.get_flow({
  flow_identifier: "FlowIdentifier", # required
  included_data: "ALL_DATA", # accepts ALL_DATA, METADATA_ONLY
})

Response structure


resp.name #=> String
resp.description #=> String
resp.execution_role_arn #=> String
resp.customer_encryption_key_arn #=> String
resp.id #=> String
resp.arn #=> String
resp.status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"
resp.created_at #=> Time
resp.updated_at #=> Time
resp.version #=> String
resp.definition.nodes #=> Array
resp.definition.nodes[0].name #=> String
resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode", "Loop", "LoopInput", "LoopController"
resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.model_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.knowledge_base.number_of_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.type #=> String, one of "BEDROCK_RERANKING_MODEL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.model_arn #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.number_of_reranked_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selection_mode #=> String, one of "SELECTIVE", "ALL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.performance_config.latency #=> String, one of "standard", "optimized"
resp.definition.nodes[0].configuration.condition.conditions #=> Array
resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
resp.definition.nodes[0].configuration.lex.bot_alias_arn #=> String
resp.definition.nodes[0].configuration.lex.locale_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.resource.prompt_arn #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_type #=> String, one of "TEXT", "CHAT"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.model_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.lambda_function.lambda_arn #=> String
resp.definition.nodes[0].configuration.storage.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.agent.agent_alias_arn #=> String
resp.definition.nodes[0].configuration.retrieval.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.inline_code.code #=> String
resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
resp.definition.nodes[0].configuration.loop.definition #=> Types::FlowDefinition
resp.definition.nodes[0].configuration.loop_controller.continue_condition.name #=> String
resp.definition.nodes[0].configuration.loop_controller.continue_condition.expression #=> String
resp.definition.nodes[0].configuration.loop_controller.max_iterations #=> Integer
resp.definition.nodes[0].inputs #=> Array
resp.definition.nodes[0].inputs[0].name #=> String
resp.definition.nodes[0].inputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.nodes[0].inputs[0].expression #=> String
resp.definition.nodes[0].inputs[0].category #=> String, one of "LoopCondition", "ReturnValueToLoopStart", "ExitLoop"
resp.definition.nodes[0].outputs #=> Array
resp.definition.nodes[0].outputs[0].name #=> String
resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.connections #=> Array
resp.definition.connections[0].type #=> String, one of "Data", "Conditional"
resp.definition.connections[0].name #=> String
resp.definition.connections[0].source #=> String
resp.definition.connections[0].target #=> String
resp.definition.connections[0].configuration.data.source_output #=> String
resp.definition.connections[0].configuration.data.target_input #=> String
resp.definition.connections[0].configuration.conditional.condition #=> String
resp.validations #=> Array
resp.validations[0].message #=> String
resp.validations[0].severity #=> String, one of "Warning", "Error"
resp.validations[0].details.cyclic_connection.connection #=> String
resp.validations[0].details.duplicate_connections.source #=> String
resp.validations[0].details.duplicate_connections.target #=> String
resp.validations[0].details.duplicate_condition_expression.node #=> String
resp.validations[0].details.duplicate_condition_expression.expression #=> String
resp.validations[0].details.unreachable_node.node #=> String
resp.validations[0].details.unknown_connection_source.connection #=> String
resp.validations[0].details.unknown_connection_source_output.connection #=> String
resp.validations[0].details.unknown_connection_target.connection #=> String
resp.validations[0].details.unknown_connection_target_input.connection #=> String
resp.validations[0].details.unknown_connection_condition.connection #=> String
resp.validations[0].details.malformed_condition_expression.node #=> String
resp.validations[0].details.malformed_condition_expression.condition #=> String
resp.validations[0].details.malformed_condition_expression.cause #=> String
resp.validations[0].details.malformed_node_input_expression.node #=> String
resp.validations[0].details.malformed_node_input_expression.input #=> String
resp.validations[0].details.malformed_node_input_expression.cause #=> String
resp.validations[0].details.mismatched_node_input_type.node #=> String
resp.validations[0].details.mismatched_node_input_type.input #=> String
resp.validations[0].details.mismatched_node_input_type.expected_type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.validations[0].details.mismatched_node_output_type.node #=> String
resp.validations[0].details.mismatched_node_output_type.output #=> String
resp.validations[0].details.mismatched_node_output_type.expected_type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.validations[0].details.incompatible_connection_data_type.connection #=> String
resp.validations[0].details.missing_connection_configuration.connection #=> String
resp.validations[0].details.missing_default_condition.node #=> String
resp.validations[0].details.missing_node_configuration.node #=> String
resp.validations[0].details.missing_node_input.node #=> String
resp.validations[0].details.missing_node_input.input #=> String
resp.validations[0].details.missing_node_output.node #=> String
resp.validations[0].details.missing_node_output.output #=> String
resp.validations[0].details.multiple_node_input_connections.node #=> String
resp.validations[0].details.multiple_node_input_connections.input #=> String
resp.validations[0].details.unfulfilled_node_input.node #=> String
resp.validations[0].details.unfulfilled_node_input.input #=> String
resp.validations[0].details.unsatisfied_connection_conditions.connection #=> String
resp.validations[0].details.unknown_node_input.node #=> String
resp.validations[0].details.unknown_node_input.input #=> String
resp.validations[0].details.unknown_node_output.node #=> String
resp.validations[0].details.unknown_node_output.output #=> String
resp.validations[0].details.missing_loop_input_node.loop_node #=> String
resp.validations[0].details.missing_loop_controller_node.loop_node #=> String
resp.validations[0].details.multiple_loop_input_nodes.loop_node #=> String
resp.validations[0].details.multiple_loop_controller_nodes.loop_node #=> String
resp.validations[0].details.loop_incompatible_node_type.node #=> String
resp.validations[0].details.loop_incompatible_node_type.incompatible_node_type #=> String, one of "Input", "Condition", "Iterator", "Collector"
resp.validations[0].details.loop_incompatible_node_type.incompatible_node_name #=> String
resp.validations[0].details.invalid_loop_boundary.connection #=> String
resp.validations[0].details.invalid_loop_boundary.source #=> String
resp.validations[0].details.invalid_loop_boundary.target #=> String
resp.validations[0].type #=> String, one of "CyclicConnection", "DuplicateConnections", "DuplicateConditionExpression", "UnreachableNode", "UnknownConnectionSource", "UnknownConnectionSourceOutput", "UnknownConnectionTarget", "UnknownConnectionTargetInput", "UnknownConnectionCondition", "MalformedConditionExpression", "MalformedNodeInputExpression", "MismatchedNodeInputType", "MismatchedNodeOutputType", "IncompatibleConnectionDataType", "MissingConnectionConfiguration", "MissingDefaultCondition", "MissingEndingNodes", "MissingNodeConfiguration", "MissingNodeInput", "MissingNodeOutput", "MissingStartingNodes", "MultipleNodeInputConnections", "UnfulfilledNodeInput", "UnsatisfiedConnectionConditions", "Unspecified", "UnknownNodeInput", "UnknownNodeOutput", "MissingLoopInputNode", "MissingLoopControllerNode", "MultipleLoopInputNodes", "MultipleLoopControllerNodes", "LoopIncompatibleNodeType", "InvalidLoopBoundary"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow.

  • :included_data (String) —

    Controls the scope of data returned. Set to METADATA_ONLY to return only resource metadata. Set to ALL_DATA or omit this field to return the full response.

Returns:

See Also:



4421
4422
4423
4424
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4421

def get_flow(params = {}, options = {})
  req = build_request(:get_flow, params)
  req.send_request(options)
end

#get_flow_alias(params = {}) ⇒ Types::GetFlowAliasResponse

Retrieves information about a flow. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.get_flow_alias({
  flow_identifier: "FlowIdentifier", # required
  alias_identifier: "FlowAliasIdentifier", # required
})

Response structure


resp.name #=> String
resp.description #=> String
resp.routing_configuration #=> Array
resp.routing_configuration[0].flow_version #=> String
resp.concurrency_configuration.type #=> String, one of "Automatic", "Manual"
resp.concurrency_configuration.max_concurrency #=> Integer
resp.flow_id #=> String
resp.id #=> String
resp.arn #=> String
resp.created_at #=> Time
resp.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow that the alias belongs to.

  • :alias_identifier (required, String) —

    The unique identifier of the alias for which to retrieve information.

Returns:

See Also:



4476
4477
4478
4479
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4476

def get_flow_alias(params = {}, options = {})
  req = build_request(:get_flow_alias, params)
  req.send_request(options)
end

#get_flow_version(params = {}) ⇒ Types::GetFlowVersionResponse

Retrieves information about a version of a flow. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.get_flow_version({
  flow_identifier: "FlowIdentifier", # required
  flow_version: "NumericalVersion", # required
  included_data: "ALL_DATA", # accepts ALL_DATA, METADATA_ONLY
})

Response structure


resp.name #=> String
resp.description #=> String
resp.execution_role_arn #=> String
resp.customer_encryption_key_arn #=> String
resp.id #=> String
resp.arn #=> String
resp.status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"
resp.created_at #=> Time
resp.version #=> String
resp.definition.nodes #=> Array
resp.definition.nodes[0].name #=> String
resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode", "Loop", "LoopInput", "LoopController"
resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.model_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.knowledge_base.number_of_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.type #=> String, one of "BEDROCK_RERANKING_MODEL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.model_arn #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.number_of_reranked_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selection_mode #=> String, one of "SELECTIVE", "ALL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.performance_config.latency #=> String, one of "standard", "optimized"
resp.definition.nodes[0].configuration.condition.conditions #=> Array
resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
resp.definition.nodes[0].configuration.lex.bot_alias_arn #=> String
resp.definition.nodes[0].configuration.lex.locale_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.resource.prompt_arn #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_type #=> String, one of "TEXT", "CHAT"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.model_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.lambda_function.lambda_arn #=> String
resp.definition.nodes[0].configuration.storage.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.agent.agent_alias_arn #=> String
resp.definition.nodes[0].configuration.retrieval.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.inline_code.code #=> String
resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
resp.definition.nodes[0].configuration.loop.definition #=> Types::FlowDefinition
resp.definition.nodes[0].configuration.loop_controller.continue_condition.name #=> String
resp.definition.nodes[0].configuration.loop_controller.continue_condition.expression #=> String
resp.definition.nodes[0].configuration.loop_controller.max_iterations #=> Integer
resp.definition.nodes[0].inputs #=> Array
resp.definition.nodes[0].inputs[0].name #=> String
resp.definition.nodes[0].inputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.nodes[0].inputs[0].expression #=> String
resp.definition.nodes[0].inputs[0].category #=> String, one of "LoopCondition", "ReturnValueToLoopStart", "ExitLoop"
resp.definition.nodes[0].outputs #=> Array
resp.definition.nodes[0].outputs[0].name #=> String
resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.connections #=> Array
resp.definition.connections[0].type #=> String, one of "Data", "Conditional"
resp.definition.connections[0].name #=> String
resp.definition.connections[0].source #=> String
resp.definition.connections[0].target #=> String
resp.definition.connections[0].configuration.data.source_output #=> String
resp.definition.connections[0].configuration.data.target_input #=> String
resp.definition.connections[0].configuration.conditional.condition #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow for which to get information.

  • :flow_version (required, String) —

    The version of the flow for which to get information.

  • :included_data (String) —

    Controls the scope of data returned. Set to METADATA_ONLY to return only resource metadata. Set to ALL_DATA or omit this field to return the full response.

Returns:

See Also:



4629
4630
4631
4632
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4629

def get_flow_version(params = {}, options = {})
  req = build_request(:get_flow_version, params)
  req.send_request(options)
end

#get_ingestion_job(params = {}) ⇒ Types::GetIngestionJobResponse

Gets information about a data ingestion job. Data sources are ingested into your knowledge base so that Large Language Models (LLMs) can use your data.

Examples:

Request syntax with placeholder values


resp = client.get_ingestion_job({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  ingestion_job_id: "Id", # required
})

Response structure


resp.ingestion_job.knowledge_base_id #=> String
resp.ingestion_job.data_source_id #=> String
resp.ingestion_job.ingestion_job_id #=> String
resp.ingestion_job.description #=> String
resp.ingestion_job.status #=> String, one of "STARTING", "IN_PROGRESS", "COMPLETE", "FAILED", "STOPPING", "STOPPED"
resp.ingestion_job.statistics.number_of_documents_scanned #=> Integer
resp.ingestion_job.statistics. #=> Integer
resp.ingestion_job.statistics.number_of_new_documents_indexed #=> Integer
resp.ingestion_job.statistics.number_of_modified_documents_indexed #=> Integer
resp.ingestion_job.statistics. #=> Integer
resp.ingestion_job.statistics.number_of_documents_deleted #=> Integer
resp.ingestion_job.statistics.number_of_documents_failed #=> Integer
resp.ingestion_job.statistics.number_of_documents_skipped #=> Integer
resp.ingestion_job.failure_reasons #=> Array
resp.ingestion_job.failure_reasons[0] #=> String
resp.ingestion_job.started_at #=> Time
resp.ingestion_job.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base for the data ingestion job you want to get information on.

  • :data_source_id (required, String) —

    The unique identifier of the data source for the data ingestion job you want to get information on.

  • :ingestion_job_id (required, String) —

    The unique identifier of the data ingestion job you want to get information on.

Returns:

See Also:



4686
4687
4688
4689
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4686

def get_ingestion_job(params = {}, options = {})
  req = build_request(:get_ingestion_job, params)
  req.send_request(options)
end

#get_knowledge_base(params = {}) ⇒ Types::GetKnowledgeBaseResponse

Gets information about a knowledge base.

Examples:

Request syntax with placeholder values


resp = client.get_knowledge_base({
  knowledge_base_id: "Id", # required
})

Response structure


resp.knowledge_base.knowledge_base_id #=> String
resp.knowledge_base.name #=> String
resp.knowledge_base.knowledge_base_arn #=> String
resp.knowledge_base.description #=> String
resp.knowledge_base.role_arn #=> String
resp.knowledge_base.knowledge_base_configuration.type #=> String, one of "VECTOR", "KENDRA", "SQL", "MANAGED"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_arn #=> String
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.dimensions #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.embedding_data_type #=> String, one of "FLOAT32", "BINARY"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].type #=> String, one of "S3"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].s3_location.uri #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_type #=> String, one of "CUSTOM", "MANAGED"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_arn #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.dimensions #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.embedding_data_type #=> String, one of "FLOAT32", "BINARY"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.server_side_encryption_configuration.kms_key_arn #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].type #=> String, one of "S3"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].s3_location.uri #=> String
resp.knowledge_base.knowledge_base_configuration.kendra_knowledge_base_configuration.kendra_index_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.type #=> String, one of "REDSHIFT"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].type #=> String, one of "REDSHIFT", "AWS_DATA_CATALOG"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].aws_data_catalog_configuration.table_names #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].aws_data_catalog_configuration.table_names[0] #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].redshift_configuration.database_name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.type #=> String, one of "SERVERLESS", "PROVISIONED"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.workgroup_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.auth_configuration.type #=> String, one of "IAM", "USERNAME_PASSWORD"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.auth_configuration.username_password_secret_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.cluster_identifier #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.type #=> String, one of "IAM", "USERNAME_PASSWORD", "USERNAME"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.database_user #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.username_password_secret_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.execution_timeout_seconds #=> Integer
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].description #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].inclusion #=> String, one of "INCLUDE", "EXCLUDE"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].description #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].inclusion #=> String, one of "INCLUDE", "EXCLUDE"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries[0].natural_language #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries[0].sql #=> String
resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.connection_string #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.endpoint #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.rds_configuration.resource_arn #=> String
resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
resp.knowledge_base.storage_configuration.rds_configuration.table_name #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.endpoint #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.database_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.collection_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.endpoint_service_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
resp.knowledge_base.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING", "FAILED", "DELETE_UNSUCCESSFUL", "UPDATE_UNSUCCESSFUL"
resp.knowledge_base.created_at #=> Time
resp.knowledge_base.updated_at #=> Time
resp.knowledge_base.failure_reasons #=> Array
resp.knowledge_base.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base you want to get information on.

Returns:

See Also:



4822
4823
4824
4825
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4822

def get_knowledge_base(params = {}, options = {})
  req = build_request(:get_knowledge_base, params)
  req.send_request(options)
end

#get_knowledge_base_documents(params = {}) ⇒ Types::GetKnowledgeBaseDocumentsResponse

Retrieves specific documents from a data source that is connected to a knowledge base. For more information, see Ingest changes directly into a knowledge base in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.get_knowledge_base_documents({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  document_identifiers: [ # required
    {
      data_source_type: "CUSTOM", # required, accepts CUSTOM, S3
      s3: {
        uri: "S3BucketUri", # required
      },
      custom: {
        id: "CustomDocumentIdentifierIdString", # required
      },
    },
  ],
})

Response structure


resp.document_details #=> Array
resp.document_details[0].knowledge_base_id #=> String
resp.document_details[0].data_source_id #=> String
resp.document_details[0].status #=> String, one of "INDEXED", "PARTIALLY_INDEXED", "PENDING", "FAILED", "METADATA_PARTIALLY_INDEXED", "METADATA_UPDATE_FAILED", "IGNORED", "NOT_FOUND", "STARTING", "IN_PROGRESS", "DELETING", "DELETE_IN_PROGRESS"
resp.document_details[0].identifier.data_source_type #=> String, one of "CUSTOM", "S3"
resp.document_details[0].identifier.s3.uri #=> String
resp.document_details[0].identifier.custom.id #=> String
resp.document_details[0].status_reason #=> String
resp.document_details[0].updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base that is connected to the data source.

  • :data_source_id (required, String) —

    The unique identifier of the data source that contains the documents.

  • :document_identifiers (required, Array<Types::DocumentIdentifier>) —

    A list of objects, each of which contains information to identify a document for which to retrieve information.

Returns:

See Also:



4884
4885
4886
4887
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4884

def get_knowledge_base_documents(params = {}, options = {})
  req = build_request(:get_knowledge_base_documents, params)
  req.send_request(options)
end

#get_prompt(params = {}) ⇒ Types::GetPromptResponse

Retrieves information about the working draft (DRAFT version) of a prompt or a version of it, depending on whether you include the promptVersion field or not. For more information, see View information about prompts using Prompt management and View information about a version of your prompt in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.get_prompt({
  prompt_identifier: "PromptIdentifier", # required
  prompt_version: "Version",
  included_data: "ALL_DATA", # accepts ALL_DATA, METADATA_ONLY
})

Response structure


resp.name #=> String
resp.description #=> String
resp.customer_encryption_key_arn #=> String
resp.default_variant #=> String
resp.variants #=> Array
resp.variants[0].name #=> String
resp.variants[0].template_type #=> String, one of "TEXT", "CHAT"
resp.variants[0].template_configuration.text.text #=> String
resp.variants[0].template_configuration.text.cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.text.input_variables #=> Array
resp.variants[0].template_configuration.text.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.messages #=> Array
resp.variants[0].template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.variants[0].template_configuration.chat.messages[0].content #=> Array
resp.variants[0].template_configuration.chat.messages[0].content[0].text #=> String
resp.variants[0].template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.system #=> Array
resp.variants[0].template_configuration.chat.system[0].text #=> String
resp.variants[0].template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.input_variables #=> Array
resp.variants[0].template_configuration.chat.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools #=> Array
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.variants[0].model_id #=> String
resp.variants[0].inference_configuration.text.temperature #=> Float
resp.variants[0].inference_configuration.text.top_p #=> Float
resp.variants[0].inference_configuration.text.max_tokens #=> Integer
resp.variants[0].inference_configuration.text.stop_sequences #=> Array
resp.variants[0].inference_configuration.text.stop_sequences[0] #=> String
resp.variants[0]. #=> Array
resp.variants[0].[0].key #=> String
resp.variants[0].[0].value #=> String
resp.variants[0].gen_ai_resource.agent.agent_identifier #=> String
resp.id #=> String
resp.arn #=> String
resp.version #=> String
resp.created_at #=> Time
resp.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :prompt_identifier (required, String) —

    The unique identifier of the prompt.

  • :prompt_version (String) —

    The version of the prompt about which you want to retrieve information. Omit this field to return information about the working draft of the prompt.

  • :included_data (String) —

    Controls the scope of data returned. Set to METADATA_ONLY to return only resource metadata. Set to ALL_DATA or omit this field to return the full response.

Returns:

See Also:



4984
4985
4986
4987
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 4984

def get_prompt(params = {}, options = {})
  req = build_request(:get_prompt, params)
  req.send_request(options)
end

#get_resource_policy(params = {}) ⇒ Types::GetResourcePolicyResponse

Retrieves the resource policy associated with a knowledge base.

Examples:

Request syntax with placeholder values


resp = client.get_resource_policy({
  resource_arn: "ResourceArn", # required
})

Response structure


resp.resource_arn #=> String
resp.policy #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :resource_arn (required, String) —

    The Amazon Resource Name (ARN) of the knowledge base to retrieve the resource policy for.

Returns:

See Also:



5017
5018
5019
5020
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5017

def get_resource_policy(params = {}, options = {})
  req = build_request(:get_resource_policy, params)
  req.send_request(options)
end

#get_vpc_configuration(params = {}) ⇒ Types::GetVpcConfigurationResponse

Returns the details and current status of a single VPC configuration. Use this operation to poll for the outcome of an asynchronous create or delete.

Examples:

Request syntax with placeholder values


resp = client.get_vpc_configuration({
  knowledge_base_id: "Id", # required
  vpc_configuration_id: "VpcConfigurationId", # required
})

Response structure


resp.vpc_configuration.vpc_configuration_id #=> String
resp.vpc_configuration.status #=> String, one of "CREATING", "CREATED", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
resp.vpc_configuration.status_message #=> String
resp.vpc_configuration.vpc_id #=> String
resp.vpc_configuration.subnet_ids #=> Array
resp.vpc_configuration.subnet_ids[0] #=> String
resp.vpc_configuration.resource_target #=> String
resp.vpc_configuration.port #=> Integer
resp.vpc_configuration.protocol #=> String, one of "HTTP", "HTTPS"
resp.vpc_configuration.resolution_mode #=> String, one of "PUBLIC", "IN_VPC"
resp.vpc_configuration.host_header #=> String
resp.vpc_configuration.tls_server_name #=> String
resp.vpc_configuration.name #=> String
resp.vpc_configuration.description #=> String
resp.vpc_configuration.created_at #=> Time
resp.vpc_configuration.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base that owns the VPC configuration.

  • :vpc_configuration_id (required, String) —

    The unique identifier of the VPC configuration to retrieve.

Returns:

See Also:



5067
5068
5069
5070
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5067

def get_vpc_configuration(params = {}, options = {})
  req = build_request(:get_vpc_configuration, params)
  req.send_request(options)
end

#ingest_knowledge_base_documents(params = {}) ⇒ Types::IngestKnowledgeBaseDocumentsResponse

Ingests documents directly into the knowledge base that is connected to the data source. The dataSourceType specified in the content for each document must match the type of the data source that you specify in the header. For more information, see Ingest changes directly into a knowledge base in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.ingest_knowledge_base_documents({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  client_token: "ClientToken",
  documents: [ # required
    {
      metadata: {
        type: "IN_LINE_ATTRIBUTE", # required, accepts IN_LINE_ATTRIBUTE, S3_LOCATION
        inline_attributes: [
          {
            key: "Key", # required
            value: { # required
              type: "BOOLEAN", # required, accepts BOOLEAN, NUMBER, STRING, STRING_LIST
              number_value: 1.0,
              boolean_value: false,
              string_value: "StringValue",
              string_list_value: ["StringValue"],
            },
          },
        ],
        s3_location: {
          uri: "S3ObjectUri", # required
          bucket_owner_account_id: "BucketOwnerAccountId",
        },
        access_control_list: [
          {
            name: "DocumentAccessControlEntryNameString", # required
            type: "USER", # required, accepts USER
            access: "ALLOW", # required, accepts ALLOW, DENY
          },
        ],
      },
      content: { # required
        data_source_type: "CUSTOM", # required, accepts CUSTOM, S3
        custom: {
          custom_document_identifier: { # required
            id: "CustomDocumentIdentifierIdString", # required
          },
          source_type: "IN_LINE", # required, accepts IN_LINE, S3_LOCATION
          s3_location: {
            uri: "S3ObjectUri", # required
            bucket_owner_account_id: "BucketOwnerAccountId",
          },
          inline_content: {
            type: "BYTE", # required, accepts BYTE, TEXT
            byte_content: {
              mime_type: "ByteContentDocMimeTypeString", # required
              data: "data", # required
            },
            text_content: {
              data: "Data", # required
            },
          },
        },
        s3: {
          s3_location: { # required
            uri: "S3BucketUri", # required
          },
        },
      },
    },
  ],
})

Response structure


resp.document_details #=> Array
resp.document_details[0].knowledge_base_id #=> String
resp.document_details[0].data_source_id #=> String
resp.document_details[0].status #=> String, one of "INDEXED", "PARTIALLY_INDEXED", "PENDING", "FAILED", "METADATA_PARTIALLY_INDEXED", "METADATA_UPDATE_FAILED", "IGNORED", "NOT_FOUND", "STARTING", "IN_PROGRESS", "DELETING", "DELETE_IN_PROGRESS"
resp.document_details[0].identifier.data_source_type #=> String, one of "CUSTOM", "S3"
resp.document_details[0].identifier.s3.uri #=> String
resp.document_details[0].identifier.custom.id #=> String
resp.document_details[0].status_reason #=> String
resp.document_details[0].updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base to ingest the documents into.

  • :data_source_id (required, String) —

    The unique identifier of the data source connected to the knowledge base that you're adding documents to.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :documents (required, Array<Types::KnowledgeBaseDocument>) —

    A list of objects, each of which contains information about the documents to add.

Returns:

See Also:



5193
5194
5195
5196
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5193

def ingest_knowledge_base_documents(params = {}, options = {})
  req = build_request(:ingest_knowledge_base_documents, params)
  req.send_request(options)
end

#list_agent_action_groups(params = {}) ⇒ Types::ListAgentActionGroupsResponse

Lists the action groups for an agent and information about each one.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_agent_action_groups({
  agent_id: "Id", # required
  agent_version: "Version", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.action_group_summaries #=> Array
resp.action_group_summaries[0].action_group_id #=> String
resp.action_group_summaries[0].action_group_name #=> String
resp.action_group_summaries[0].action_group_state #=> String, one of "ENABLED", "DISABLED"
resp.action_group_summaries[0].description #=> String
resp.action_group_summaries[0].updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

  • :agent_version (required, String) —

    The version of the agent.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5248
5249
5250
5251
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5248

def list_agent_action_groups(params = {}, options = {})
  req = build_request(:list_agent_action_groups, params)
  req.send_request(options)
end

#list_agent_aliases(params = {}) ⇒ Types::ListAgentAliasesResponse

Lists the aliases of an agent and information about each one.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_agent_aliases({
  agent_id: "Id", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.agent_alias_summaries #=> Array
resp.agent_alias_summaries[0].agent_alias_id #=> String
resp.agent_alias_summaries[0].agent_alias_name #=> String
resp.agent_alias_summaries[0].description #=> String
resp.agent_alias_summaries[0].routing_configuration #=> Array
resp.agent_alias_summaries[0].routing_configuration[0].agent_version #=> String
resp.agent_alias_summaries[0].routing_configuration[0].provisioned_throughput #=> String
resp.agent_alias_summaries[0].agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
resp.agent_alias_summaries[0].created_at #=> Time
resp.agent_alias_summaries[0].updated_at #=> Time
resp.agent_alias_summaries[0].alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5304
5305
5306
5307
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5304

def list_agent_aliases(params = {}, options = {})
  req = build_request(:list_agent_aliases, params)
  req.send_request(options)
end

#list_agent_collaborators(params = {}) ⇒ Types::ListAgentCollaboratorsResponse

Retrieve a list of an agent's collaborators.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_agent_collaborators({
  agent_id: "Id", # required
  agent_version: "Version", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.agent_collaborator_summaries #=> Array
resp.agent_collaborator_summaries[0].agent_id #=> String
resp.agent_collaborator_summaries[0].agent_version #=> String
resp.agent_collaborator_summaries[0].collaborator_id #=> String
resp.agent_collaborator_summaries[0].agent_descriptor.alias_arn #=> String
resp.agent_collaborator_summaries[0].collaboration_instruction #=> String
resp.agent_collaborator_summaries[0].relay_conversation_history #=> String, one of "TO_COLLABORATOR", "DISABLED"
resp.agent_collaborator_summaries[0].collaborator_name #=> String
resp.agent_collaborator_summaries[0].created_at #=> Time
resp.agent_collaborator_summaries[0].last_updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The agent's ID.

  • :agent_version (required, String) —

    The agent's version.

  • :max_results (Integer) —

    The maximum number of agent collaborators to return in one page of results.

  • :next_token (String) —

    Specify the pagination token from a previous request to retrieve the next page of results.

Returns:

See Also:



5359
5360
5361
5362
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5359

def list_agent_collaborators(params = {}, options = {})
  req = build_request(:list_agent_collaborators, params)
  req.send_request(options)
end

#list_agent_knowledge_bases(params = {}) ⇒ Types::ListAgentKnowledgeBasesResponse

Lists knowledge bases associated with an agent and information about each one.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_agent_knowledge_bases({
  agent_id: "Id", # required
  agent_version: "Version", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.agent_knowledge_base_summaries #=> Array
resp.agent_knowledge_base_summaries[0].knowledge_base_id #=> String
resp.agent_knowledge_base_summaries[0].description #=> String
resp.agent_knowledge_base_summaries[0].knowledge_base_state #=> String, one of "ENABLED", "DISABLED"
resp.agent_knowledge_base_summaries[0].updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent for which to return information about knowledge bases associated with it.

  • :agent_version (required, String) —

    The version of the agent for which to return information about knowledge bases associated with it.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5416
5417
5418
5419
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5416

def list_agent_knowledge_bases(params = {}, options = {})
  req = build_request(:list_agent_knowledge_bases, params)
  req.send_request(options)
end

#list_agent_versions(params = {}) ⇒ Types::ListAgentVersionsResponse

Lists the versions of an agent and information about each version.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_agent_versions({
  agent_id: "Id", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.agent_version_summaries #=> Array
resp.agent_version_summaries[0].agent_name #=> String
resp.agent_version_summaries[0].agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"
resp.agent_version_summaries[0].agent_version #=> String
resp.agent_version_summaries[0].created_at #=> Time
resp.agent_version_summaries[0].updated_at #=> Time
resp.agent_version_summaries[0].description #=> String
resp.agent_version_summaries[0].guardrail_configuration.guardrail_identifier #=> String
resp.agent_version_summaries[0].guardrail_configuration.guardrail_version #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5470
5471
5472
5473
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5470

def list_agent_versions(params = {}, options = {})
  req = build_request(:list_agent_versions, params)
  req.send_request(options)
end

#list_agents(params = {}) ⇒ Types::ListAgentsResponse

Lists the agents belonging to an account and information about each agent.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_agents({
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.agent_summaries #=> Array
resp.agent_summaries[0].agent_id #=> String
resp.agent_summaries[0].agent_name #=> String
resp.agent_summaries[0].agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"
resp.agent_summaries[0].description #=> String
resp.agent_summaries[0].updated_at #=> Time
resp.agent_summaries[0].latest_agent_version #=> String
resp.agent_summaries[0].guardrail_configuration.guardrail_identifier #=> String
resp.agent_summaries[0].guardrail_configuration.guardrail_version #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5521
5522
5523
5524
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5521

def list_agents(params = {}, options = {})
  req = build_request(:list_agents, params)
  req.send_request(options)
end

#list_data_sources(params = {}) ⇒ Types::ListDataSourcesResponse

Lists the data sources in a knowledge base and information about each one.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_data_sources({
  knowledge_base_id: "Id", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.data_source_summaries #=> Array
resp.data_source_summaries[0].knowledge_base_id #=> String
resp.data_source_summaries[0].data_source_id #=> String
resp.data_source_summaries[0].name #=> String
resp.data_source_summaries[0].status #=> String, one of "AVAILABLE", "DELETING", "DELETE_UNSUCCESSFUL", "CREATING", "UPDATING", "FAILED"
resp.data_source_summaries[0].description #=> String
resp.data_source_summaries[0].updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base for which to return a list of information.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5575
5576
5577
5578
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5575

def list_data_sources(params = {}, options = {})
  req = build_request(:list_data_sources, params)
  req.send_request(options)
end

#list_flow_aliases(params = {}) ⇒ Types::ListFlowAliasesResponse

Returns a list of aliases for a flow.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_flow_aliases({
  flow_identifier: "FlowIdentifier", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.flow_alias_summaries #=> Array
resp.flow_alias_summaries[0].name #=> String
resp.flow_alias_summaries[0].description #=> String
resp.flow_alias_summaries[0].routing_configuration #=> Array
resp.flow_alias_summaries[0].routing_configuration[0].flow_version #=> String
resp.flow_alias_summaries[0].concurrency_configuration.type #=> String, one of "Automatic", "Manual"
resp.flow_alias_summaries[0].concurrency_configuration.max_concurrency #=> Integer
resp.flow_alias_summaries[0].flow_id #=> String
resp.flow_alias_summaries[0].id #=> String
resp.flow_alias_summaries[0].arn #=> String
resp.flow_alias_summaries[0].created_at #=> Time
resp.flow_alias_summaries[0].updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow for which aliases are being returned.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5633
5634
5635
5636
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5633

def list_flow_aliases(params = {}, options = {})
  req = build_request(:list_flow_aliases, params)
  req.send_request(options)
end

#list_flow_versions(params = {}) ⇒ Types::ListFlowVersionsResponse

Returns a list of information about each flow. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_flow_versions({
  flow_identifier: "FlowIdentifier", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.flow_version_summaries #=> Array
resp.flow_version_summaries[0].id #=> String
resp.flow_version_summaries[0].arn #=> String
resp.flow_version_summaries[0].status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"
resp.flow_version_summaries[0].created_at #=> Time
resp.flow_version_summaries[0].version #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5690
5691
5692
5693
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5690

def list_flow_versions(params = {}, options = {})
  req = build_request(:list_flow_versions, params)
  req.send_request(options)
end

#list_flows(params = {}) ⇒ Types::ListFlowsResponse

Returns a list of flows and information about each flow. For more information, see Manage a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_flows({
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.flow_summaries #=> Array
resp.flow_summaries[0].name #=> String
resp.flow_summaries[0].description #=> String
resp.flow_summaries[0].id #=> String
resp.flow_summaries[0].arn #=> String
resp.flow_summaries[0].status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"
resp.flow_summaries[0].created_at #=> Time
resp.flow_summaries[0].updated_at #=> Time
resp.flow_summaries[0].version #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5746
5747
5748
5749
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5746

def list_flows(params = {}, options = {})
  req = build_request(:list_flows, params)
  req.send_request(options)
end

#list_ingestion_jobs(params = {}) ⇒ Types::ListIngestionJobsResponse

Lists the data ingestion jobs for a data source. The list also includes information about each job.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_ingestion_jobs({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  filters: [
    {
      attribute: "STATUS", # required, accepts STATUS
      operator: "EQ", # required, accepts EQ
      values: ["IngestionJobFilterValue"], # required
    },
  ],
  sort_by: {
    attribute: "STATUS", # required, accepts STATUS, STARTED_AT
    order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
  },
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.ingestion_job_summaries #=> Array
resp.ingestion_job_summaries[0].knowledge_base_id #=> String
resp.ingestion_job_summaries[0].data_source_id #=> String
resp.ingestion_job_summaries[0].ingestion_job_id #=> String
resp.ingestion_job_summaries[0].description #=> String
resp.ingestion_job_summaries[0].status #=> String, one of "STARTING", "IN_PROGRESS", "COMPLETE", "FAILED", "STOPPING", "STOPPED"
resp.ingestion_job_summaries[0].started_at #=> Time
resp.ingestion_job_summaries[0].updated_at #=> Time
resp.ingestion_job_summaries[0].statistics.number_of_documents_scanned #=> Integer
resp.ingestion_job_summaries[0].statistics. #=> Integer
resp.ingestion_job_summaries[0].statistics.number_of_new_documents_indexed #=> Integer
resp.ingestion_job_summaries[0].statistics.number_of_modified_documents_indexed #=> Integer
resp.ingestion_job_summaries[0].statistics. #=> Integer
resp.ingestion_job_summaries[0].statistics.number_of_documents_deleted #=> Integer
resp.ingestion_job_summaries[0].statistics.number_of_documents_failed #=> Integer
resp.ingestion_job_summaries[0].statistics.number_of_documents_skipped #=> Integer
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base for the list of data ingestion jobs.

  • :data_source_id (required, String) —

    The unique identifier of the data source for the list of data ingestion jobs.

  • :filters (Array<Types::IngestionJobFilter>) —

    Contains information about the filters for filtering the data.

  • :sort_by (Types::IngestionJobSortBy) —

    Contains details about how to sort the data.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5831
5832
5833
5834
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5831

def list_ingestion_jobs(params = {}, options = {})
  req = build_request(:list_ingestion_jobs, params)
  req.send_request(options)
end

#list_knowledge_base_documents(params = {}) ⇒ Types::ListKnowledgeBaseDocumentsResponse

Retrieves all the documents contained in a data source that is connected to a knowledge base. For more information, see Ingest changes directly into a knowledge base in the Amazon Bedrock User Guide.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_knowledge_base_documents({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.document_details #=> Array
resp.document_details[0].knowledge_base_id #=> String
resp.document_details[0].data_source_id #=> String
resp.document_details[0].status #=> String, one of "INDEXED", "PARTIALLY_INDEXED", "PENDING", "FAILED", "METADATA_PARTIALLY_INDEXED", "METADATA_UPDATE_FAILED", "IGNORED", "NOT_FOUND", "STARTING", "IN_PROGRESS", "DELETING", "DELETE_IN_PROGRESS"
resp.document_details[0].identifier.data_source_type #=> String, one of "CUSTOM", "S3"
resp.document_details[0].identifier.s3.uri #=> String
resp.document_details[0].identifier.custom.id #=> String
resp.document_details[0].status_reason #=> String
resp.document_details[0].updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base that is connected to the data source.

  • :data_source_id (required, String) —

    The unique identifier of the data source that contains the documents.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5897
5898
5899
5900
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5897

def list_knowledge_base_documents(params = {}, options = {})
  req = build_request(:list_knowledge_base_documents, params)
  req.send_request(options)
end

#list_knowledge_bases(params = {}) ⇒ Types::ListKnowledgeBasesResponse

Lists the knowledge bases in an account. The list also includesinformation about each knowledge base.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_knowledge_bases({
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.knowledge_base_summaries #=> Array
resp.knowledge_base_summaries[0].knowledge_base_id #=> String
resp.knowledge_base_summaries[0].name #=> String
resp.knowledge_base_summaries[0].description #=> String
resp.knowledge_base_summaries[0].status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING", "FAILED", "DELETE_UNSUCCESSFUL", "UPDATE_UNSUCCESSFUL"
resp.knowledge_base_summaries[0].updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



5945
5946
5947
5948
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 5945

def list_knowledge_bases(params = {}, options = {})
  req = build_request(:list_knowledge_bases, params)
  req.send_request(options)
end

#list_prompts(params = {}) ⇒ Types::ListPromptsResponse

Returns either information about the working draft (DRAFT version) of each prompt in an account, or information about of all versions of a prompt, depending on whether you include the promptIdentifier field or not. For more information, see View information about prompts using Prompt management in the Amazon Bedrock User Guide.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_prompts({
  prompt_identifier: "PromptIdentifier",
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.prompt_summaries #=> Array
resp.prompt_summaries[0].name #=> String
resp.prompt_summaries[0].description #=> String
resp.prompt_summaries[0].id #=> String
resp.prompt_summaries[0].arn #=> String
resp.prompt_summaries[0].version #=> String
resp.prompt_summaries[0].created_at #=> Time
resp.prompt_summaries[0].updated_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :prompt_identifier (String) —

    The unique identifier of the prompt for whose versions you want to return information. Omit this field to list information about all prompts in an account.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the nextToken field when making another request to return the next batch of results.

  • :next_token (String) —

    If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

Returns:

See Also:



6008
6009
6010
6011
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6008

def list_prompts(params = {}, options = {})
  req = build_request(:list_prompts, params)
  req.send_request(options)
end

#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse

List all the tags for the resource you specify.

Examples:

Request syntax with placeholder values


resp = client.list_tags_for_resource({
  resource_arn: "TaggableResourcesArn", # required
})

Response structure


resp.tags #=> Hash
resp.tags["TagKey"] #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :resource_arn (required, String) —

    The Amazon Resource Name (ARN) of the resource for which to list tags.

Returns:

See Also:



6037
6038
6039
6040
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6037

def list_tags_for_resource(params = {}, options = {})
  req = build_request(:list_tags_for_resource, params)
  req.send_request(options)
end

#list_vpc_configurations(params = {}) ⇒ Types::ListVpcConfigurationsResponse

Returns a paginated list of the VPC configurations for a knowledge base. You can optionally filter by status. Use the nextToken parameter to retrieve additional results.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_vpc_configurations({
  knowledge_base_id: "Id", # required
  status_filter: "CREATING", # accepts CREATING, CREATED, DELETING, CREATE_FAILED, DELETE_FAILED
  max_results: 1,
  next_token: "NextToken",
})

Response structure


resp.items #=> Array
resp.items[0].vpc_configuration_id #=> String
resp.items[0].status #=> String, one of "CREATING", "CREATED", "DELETING", "CREATE_FAILED", "DELETE_FAILED"
resp.items[0].status_message #=> String
resp.items[0].vpc_id #=> String
resp.items[0].resource_target #=> String
resp.items[0].port #=> Integer
resp.items[0].protocol #=> String, one of "HTTP", "HTTPS"
resp.items[0].resolution_mode #=> String, one of "PUBLIC", "IN_VPC"
resp.items[0].host_header #=> String
resp.items[0].tls_server_name #=> String
resp.items[0].name #=> String
resp.items[0].description #=> String
resp.items[0].created_at #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base whose VPC configurations you want to list.

  • :status_filter (String) —

    The status to filter the results by. Only VPC configurations with the specified status are returned.

  • :max_results (Integer) —

    The maximum number of results to return in the response. If more results are available, the response returns a nextToken.

  • :next_token (String) —

    A pagination token to retrieve the next page of results, returned in a previous response when more results are available.

Returns:

See Also:



6100
6101
6102
6103
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6100

def list_vpc_configurations(params = {}, options = {})
  req = build_request(:list_vpc_configurations, params)
  req.send_request(options)
end

#prepare_agent(params = {}) ⇒ Types::PrepareAgentResponse

Creates a DRAFT version of the agent that can be used for internal testing.

Examples:

Request syntax with placeholder values


resp = client.prepare_agent({
  agent_id: "Id", # required
})

Response structure


resp.agent_id #=> String
resp.agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"
resp.agent_version #=> String
resp.prepared_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent for which to create a DRAFT version.

Returns:

See Also:



6136
6137
6138
6139
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6136

def prepare_agent(params = {}, options = {})
  req = build_request(:prepare_agent, params)
  req.send_request(options)
end

#prepare_flow(params = {}) ⇒ Types::PrepareFlowResponse

Prepares the DRAFT version of a flow so that it can be invoked. For more information, see Test a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.prepare_flow({
  flow_identifier: "FlowIdentifier", # required
})

Response structure


resp.id #=> String
resp.status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :flow_identifier (required, String) —

    The unique identifier of the flow.

Returns:

See Also:



6172
6173
6174
6175
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6172

def prepare_flow(params = {}, options = {})
  req = build_request(:prepare_flow, params)
  req.send_request(options)
end

#put_resource_policy(params = {}) ⇒ Types::PutResourcePolicyResponse

Associates a resource policy with a knowledge base. A resource policy allows other AWS accounts to access the knowledge base. For more information, see Cross-account access for knowledge bases.

Examples:

Request syntax with placeholder values


resp = client.put_resource_policy({
  resource_arn: "ResourceArn", # required
  policy: "ResourcePolicy", # required
  expected_revision_id: "RevisionId",
})

Response structure


resp.resource_arn #=> String
resp.revision_id #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :resource_arn (required, String) —

    The Amazon Resource Name (ARN) of the knowledge base to attach the resource policy to.

  • :policy (required, String) —

    The JSON-formatted resource policy to associate with the knowledge base.

    SDK automatically handles json encoding and base64 encoding for you when the required value (Hash, Array, etc.) is provided according to the description.

  • :expected_revision_id (String) —

    The expected revision identifier of the resource policy. Use this to prevent conflicts when multiple users update the same policy concurrently. Specify the revisionId from the most recent GetResourcePolicy or PutResourcePolicy response.

Returns:

See Also:



6225
6226
6227
6228
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6225

def put_resource_policy(params = {}, options = {})
  req = build_request(:put_resource_policy, params)
  req.send_request(options)
end

#start_ingestion_job(params = {}) ⇒ Types::StartIngestionJobResponse

Begins a data ingestion job. Data sources are ingested into your knowledge base so that Large Language Models (LLMs) can use your data.

Examples:

Request syntax with placeholder values


resp = client.start_ingestion_job({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  client_token: "ClientToken",
  description: "Description",
})

Response structure


resp.ingestion_job.knowledge_base_id #=> String
resp.ingestion_job.data_source_id #=> String
resp.ingestion_job.ingestion_job_id #=> String
resp.ingestion_job.description #=> String
resp.ingestion_job.status #=> String, one of "STARTING", "IN_PROGRESS", "COMPLETE", "FAILED", "STOPPING", "STOPPED"
resp.ingestion_job.statistics.number_of_documents_scanned #=> Integer
resp.ingestion_job.statistics. #=> Integer
resp.ingestion_job.statistics.number_of_new_documents_indexed #=> Integer
resp.ingestion_job.statistics.number_of_modified_documents_indexed #=> Integer
resp.ingestion_job.statistics. #=> Integer
resp.ingestion_job.statistics.number_of_documents_deleted #=> Integer
resp.ingestion_job.statistics.number_of_documents_failed #=> Integer
resp.ingestion_job.statistics.number_of_documents_skipped #=> Integer
resp.ingestion_job.failure_reasons #=> Array
resp.ingestion_job.failure_reasons[0] #=> String
resp.ingestion_job.started_at #=> Time
resp.ingestion_job.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base for the data ingestion job.

  • :data_source_id (required, String) —

    The unique identifier of the data source you want to ingest into your knowledge base.

  • :client_token (String) —

    A unique, case-sensitive identifier to ensure that the API request completes no more than one time. If this token matches a previous request, Amazon Bedrock ignores the request, but does not return an error. For more information, see Ensuring idempotency.

    A suitable default value is auto-generated. You should normally not need to pass this option.**

  • :description (String) —

    A description of the data ingestion job.

Returns:

See Also:



6294
6295
6296
6297
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6294

def start_ingestion_job(params = {}, options = {})
  req = build_request(:start_ingestion_job, params)
  req.send_request(options)
end

#stop_ingestion_job(params = {}) ⇒ Types::StopIngestionJobResponse

Stops a currently running data ingestion job. You can send a StartIngestionJob request again to ingest the rest of your data when you are ready.

Examples:

Request syntax with placeholder values


resp = client.stop_ingestion_job({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  ingestion_job_id: "Id", # required
})

Response structure


resp.ingestion_job.knowledge_base_id #=> String
resp.ingestion_job.data_source_id #=> String
resp.ingestion_job.ingestion_job_id #=> String
resp.ingestion_job.description #=> String
resp.ingestion_job.status #=> String, one of "STARTING", "IN_PROGRESS", "COMPLETE", "FAILED", "STOPPING", "STOPPED"
resp.ingestion_job.statistics.number_of_documents_scanned #=> Integer
resp.ingestion_job.statistics. #=> Integer
resp.ingestion_job.statistics.number_of_new_documents_indexed #=> Integer
resp.ingestion_job.statistics.number_of_modified_documents_indexed #=> Integer
resp.ingestion_job.statistics. #=> Integer
resp.ingestion_job.statistics.number_of_documents_deleted #=> Integer
resp.ingestion_job.statistics.number_of_documents_failed #=> Integer
resp.ingestion_job.statistics.number_of_documents_skipped #=> Integer
resp.ingestion_job.failure_reasons #=> Array
resp.ingestion_job.failure_reasons[0] #=> String
resp.ingestion_job.started_at #=> Time
resp.ingestion_job.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base for the data ingestion job you want to stop.

  • :data_source_id (required, String) —

    The unique identifier of the data source for the data ingestion job you want to stop.

  • :ingestion_job_id (required, String) —

    The unique identifier of the data ingestion job you want to stop.

Returns:

See Also:



6350
6351
6352
6353
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6350

def stop_ingestion_job(params = {}, options = {})
  req = build_request(:stop_ingestion_job, params)
  req.send_request(options)
end

#tag_resource(params = {}) ⇒ Struct

Associate tags with a resource. For more information, see Tagging resources in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.tag_resource({
  resource_arn: "TaggableResourcesArn", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
})

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :resource_arn (required, String) —

    The Amazon Resource Name (ARN) of the resource to tag.

  • :tags (required, Hash<String,String>) —

    An object containing key-value pairs that define the tags to attach to the resource.

Returns:

  • (Struct) —

    Returns an empty response.

See Also:



6384
6385
6386
6387
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6384

def tag_resource(params = {}, options = {})
  req = build_request(:tag_resource, params)
  req.send_request(options)
end

#untag_resource(params = {}) ⇒ Struct

Remove tags from a resource.

Examples:

Request syntax with placeholder values


resp = client.untag_resource({
  resource_arn: "TaggableResourcesArn", # required
  tag_keys: ["TagKey"], # required
})

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :resource_arn (required, String) —

    The Amazon Resource Name (ARN) of the resource from which to remove tags.

  • :tag_keys (required, Array<String>) —

    A list of keys of the tags to remove from the resource.

Returns:

  • (Struct) —

    Returns an empty response.

See Also:



6411
6412
6413
6414
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6411

def untag_resource(params = {}, options = {})
  req = build_request(:untag_resource, params)
  req.send_request(options)
end

#update_agent(params = {}) ⇒ Types::UpdateAgentResponse

Updates the configuration of an agent.

Examples:

Request syntax with placeholder values


resp = client.update_agent({
  agent_id: "Id", # required
  agent_name: "Name", # required
  instruction: "Instruction",
  foundation_model: "ModelIdentifier", # required
  description: "Description",
  orchestration_type: "DEFAULT", # accepts DEFAULT, CUSTOM_ORCHESTRATION
  custom_orchestration: {
    executor: {
      lambda: "LambdaArn",
    },
  },
  idle_session_ttl_in_seconds: 1,
  agent_resource_role_arn: "AgentRoleArn", # required
  customer_encryption_key_arn: "KmsKeyArn",
  prompt_override_configuration: {
    prompt_configurations: [ # required
      {
        prompt_type: "PRE_PROCESSING", # accepts PRE_PROCESSING, ORCHESTRATION, POST_PROCESSING, KNOWLEDGE_BASE_RESPONSE_GENERATION, MEMORY_SUMMARIZATION
        prompt_creation_mode: "DEFAULT", # accepts DEFAULT, OVERRIDDEN
        prompt_state: "ENABLED", # accepts ENABLED, DISABLED
        base_prompt_template: "BasePromptTemplate",
        inference_configuration: {
          temperature: 1.0,
          top_p: 1.0,
          top_k: 1,
          maximum_length: 1,
          stop_sequences: ["String"],
        },
        parser_mode: "DEFAULT", # accepts DEFAULT, OVERRIDDEN
        foundation_model: "ModelIdentifier",
        additional_model_request_fields: {
        },
      },
    ],
    override_lambda: "LambdaArn",
  },
  guardrail_configuration: {
    guardrail_identifier: "GuardrailIdentifier",
    guardrail_version: "GuardrailVersion",
  },
  memory_configuration: {
    enabled_memory_types: ["SESSION_SUMMARY"], # required, accepts SESSION_SUMMARY
    storage_days: 1,
    session_summary_configuration: {
      max_recent_sessions: 1,
    },
  },
  agent_collaboration: "SUPERVISOR", # accepts SUPERVISOR, SUPERVISOR_ROUTER, DISABLED
})

Response structure


resp.agent.agent_id #=> String
resp.agent.agent_name #=> String
resp.agent.agent_arn #=> String
resp.agent.agent_version #=> String
resp.agent.client_token #=> String
resp.agent.instruction #=> String
resp.agent.agent_status #=> String, one of "CREATING", "PREPARING", "PREPARED", "NOT_PREPARED", "DELETING", "FAILED", "VERSIONING", "UPDATING"
resp.agent.foundation_model #=> String
resp.agent.description #=> String
resp.agent.orchestration_type #=> String, one of "DEFAULT", "CUSTOM_ORCHESTRATION"
resp.agent.custom_orchestration.executor.lambda #=> String
resp.agent.idle_session_ttl_in_seconds #=> Integer
resp.agent.agent_resource_role_arn #=> String
resp.agent.customer_encryption_key_arn #=> String
resp.agent.created_at #=> Time
resp.agent.updated_at #=> Time
resp.agent.prepared_at #=> Time
resp.agent.failure_reasons #=> Array
resp.agent.failure_reasons[0] #=> String
resp.agent.recommended_actions #=> Array
resp.agent.recommended_actions[0] #=> String
resp.agent.prompt_override_configuration.prompt_configurations #=> Array
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_type #=> String, one of "PRE_PROCESSING", "ORCHESTRATION", "POST_PROCESSING", "KNOWLEDGE_BASE_RESPONSE_GENERATION", "MEMORY_SUMMARIZATION"
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_creation_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent.prompt_override_configuration.prompt_configurations[0].prompt_state #=> String, one of "ENABLED", "DISABLED"
resp.agent.prompt_override_configuration.prompt_configurations[0].base_prompt_template #=> String
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.temperature #=> Float
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_p #=> Float
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.top_k #=> Integer
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.maximum_length #=> Integer
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences #=> Array
resp.agent.prompt_override_configuration.prompt_configurations[0].inference_configuration.stop_sequences[0] #=> String
resp.agent.prompt_override_configuration.prompt_configurations[0].parser_mode #=> String, one of "DEFAULT", "OVERRIDDEN"
resp.agent.prompt_override_configuration.prompt_configurations[0].foundation_model #=> String
resp.agent.prompt_override_configuration.override_lambda #=> String
resp.agent.guardrail_configuration.guardrail_identifier #=> String
resp.agent.guardrail_configuration.guardrail_version #=> String
resp.agent.memory_configuration.enabled_memory_types #=> Array
resp.agent.memory_configuration.enabled_memory_types[0] #=> String, one of "SESSION_SUMMARY"
resp.agent.memory_configuration.storage_days #=> Integer
resp.agent.memory_configuration.session_summary_configuration.max_recent_sessions #=> Integer
resp.agent.agent_collaboration #=> String, one of "SUPERVISOR", "SUPERVISOR_ROUTER", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

  • :agent_name (required, String) —

    Specifies a new name for the agent.

  • :instruction (String) —

    Specifies new instructions that tell the agent what it should do and how it should interact with users.

  • :foundation_model (required, String) —

    The identifier for the model that you want to be used for orchestration by the agent you create.

    The modelId to provide depends on the type of model or throughput that you use:

  • :description (String) —

    Specifies a new description of the agent.

  • :orchestration_type (String) —

    Specifies the type of orchestration strategy for the agent. This is set to DEFAULT orchestration type, by default.

  • :custom_orchestration (Types::CustomOrchestration) —

    Contains details of the custom orchestration configured for the agent.

  • :idle_session_ttl_in_seconds (Integer) —

    The number of seconds for which Amazon Bedrock keeps information about a user's conversation with the agent.

    A user interaction remains active for the amount of time specified. If no conversation occurs during this time, the session expires and Amazon Bedrock deletes any data provided before the timeout.

  • :agent_resource_role_arn (required, String) —

    The Amazon Resource Name (ARN) of the IAM role with permissions to invoke API operations on the agent.

  • :customer_encryption_key_arn (String) —

    The Amazon Resource Name (ARN) of the KMS key with which to encrypt the agent.

  • :prompt_override_configuration (Types::PromptOverrideConfiguration) —

    Contains configurations to override prompts in different parts of an agent sequence. For more information, see Advanced prompts.

  • :guardrail_configuration (Types::GuardrailConfiguration) —

    The unique Guardrail configuration assigned to the agent when it is updated.

  • :memory_configuration (Types::MemoryConfiguration) —

    Specifies the new memory configuration for the agent.

  • :agent_collaboration (String) —

    The agent's collaboration role.

Returns:

See Also:



6617
6618
6619
6620
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6617

def update_agent(params = {}, options = {})
  req = build_request(:update_agent, params)
  req.send_request(options)
end

#update_agent_action_group(params = {}) ⇒ Types::UpdateAgentActionGroupResponse

Updates the configuration for an action group for an agent.

Examples:

Request syntax with placeholder values


resp = client.update_agent_action_group({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  action_group_id: "Id", # required
  action_group_name: "Name", # required
  description: "Description",
  parent_action_group_signature: "AMAZON.UserInput", # accepts AMAZON.UserInput, AMAZON.CodeInterpreter, ANTHROPIC.Computer, ANTHROPIC.Bash, ANTHROPIC.TextEditor
  parent_action_group_signature_params: {
    "ActionGroupSignatureParamsKeyString" => "ActionGroupSignatureParamsValueString",
  },
  action_group_executor: {
    lambda: "LambdaArn",
    custom_control: "RETURN_CONTROL", # accepts RETURN_CONTROL
  },
  action_group_state: "ENABLED", # accepts ENABLED, DISABLED
  api_schema: {
    s3: {
      s3_bucket_name: "S3BucketName",
      s3_object_key: "S3ObjectKey",
    },
    payload: "Payload",
  },
  function_schema: {
    functions: [
      {
        name: "Name", # required
        description: "FunctionDescription",
        parameters: {
          "Name" => {
            description: "ParameterDescription",
            type: "string", # required, accepts string, number, integer, boolean, array
            required: false,
          },
        },
        require_confirmation: "ENABLED", # accepts ENABLED, DISABLED
      },
    ],
  },
})

Response structure


resp.agent_action_group.agent_id #=> String
resp.agent_action_group.agent_version #=> String
resp.agent_action_group.action_group_id #=> String
resp.agent_action_group.action_group_name #=> String
resp.agent_action_group.client_token #=> String
resp.agent_action_group.description #=> String
resp.agent_action_group.created_at #=> Time
resp.agent_action_group.updated_at #=> Time
resp.agent_action_group.parent_action_signature #=> String, one of "AMAZON.UserInput", "AMAZON.CodeInterpreter", "ANTHROPIC.Computer", "ANTHROPIC.Bash", "ANTHROPIC.TextEditor"
resp.agent_action_group.parent_action_group_signature_params #=> Hash
resp.agent_action_group.parent_action_group_signature_params["ActionGroupSignatureParamsKeyString"] #=> String
resp.agent_action_group.action_group_executor.lambda #=> String
resp.agent_action_group.action_group_executor.custom_control #=> String, one of "RETURN_CONTROL"
resp.agent_action_group.api_schema.s3.s3_bucket_name #=> String
resp.agent_action_group.api_schema.s3.s3_object_key #=> String
resp.agent_action_group.api_schema.payload #=> String
resp.agent_action_group.function_schema.functions #=> Array
resp.agent_action_group.function_schema.functions[0].name #=> String
resp.agent_action_group.function_schema.functions[0].description #=> String
resp.agent_action_group.function_schema.functions[0].parameters #=> Hash
resp.agent_action_group.function_schema.functions[0].parameters["Name"].description #=> String
resp.agent_action_group.function_schema.functions[0].parameters["Name"].type #=> String, one of "string", "number", "integer", "boolean", "array"
resp.agent_action_group.function_schema.functions[0].parameters["Name"].required #=> Boolean
resp.agent_action_group.function_schema.functions[0].require_confirmation #=> String, one of "ENABLED", "DISABLED"
resp.agent_action_group.action_group_state #=> String, one of "ENABLED", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent for which to update the action group.

  • :agent_version (required, String) —

    The unique identifier of the agent version for which to update the action group.

  • :action_group_id (required, String) —

    The unique identifier of the action group.

  • :action_group_name (required, String) —

    Specifies a new name for the action group.

  • :description (String) —

    Specifies a new name for the action group.

  • :parent_action_group_signature (String) —

    Update the built-in or computer use action for this action group. If you specify a value, you must leave the description, apiSchema, and actionGroupExecutor fields empty for this action group.

    • To allow your agent to request the user for additional information when trying to complete a task, set this field to AMAZON.UserInput.

    • To allow your agent to generate, run, and troubleshoot code when trying to complete a task, set this field to AMAZON.CodeInterpreter.

    • To allow your agent to use an Anthropic computer use tool, specify one of the following values.

      Computer use is a new Anthropic Claude model capability (in beta) available with Anthropic Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. When operating computer use functionality, we recommend taking additional security precautions, such as executing computer actions in virtual environments with restricted data access and limited internet connectivity. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.

      • ANTHROPIC.Computer - Gives the agent permission to use the mouse and keyboard and take screenshots.

      • ANTHROPIC.TextEditor - Gives the agent permission to view, create and edit files.

      • ANTHROPIC.Bash - Gives the agent permission to run commands in a bash shell.

    During orchestration, if your agent determines that it needs to invoke an API in an action group, but doesn't have enough information to complete the API request, it will invoke this action group instead and return an Observation reprompting the user for more information.

  • :parent_action_group_signature_params (Hash<String,String>) —

    The configuration settings for a computer use action.

    Computer use is a new Anthropic Claude model capability (in beta) available with Claude 3.7 Sonnet and Claude 3.5 Sonnet v2 only. For more information, see Configure an Amazon Bedrock Agent to complete tasks with computer use tools.

  • :action_group_executor (Types::ActionGroupExecutor) —

    The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

  • :action_group_state (String) —

    Specifies whether the action group is available for the agent to invoke or not when sending an InvokeAgent request.

  • :api_schema (Types::APISchema) —

    Contains either details about the S3 object containing the OpenAPI schema for the action group or the JSON or YAML-formatted payload defining the schema. For more information, see Action group OpenAPI schemas.

  • :function_schema (Types::FunctionSchema) —

    Contains details about the function schema for the action group or the JSON or YAML-formatted payload defining the schema.

Returns:

See Also:



6800
6801
6802
6803
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6800

def update_agent_action_group(params = {}, options = {})
  req = build_request(:update_agent_action_group, params)
  req.send_request(options)
end

#update_agent_alias(params = {}) ⇒ Types::UpdateAgentAliasResponse

Updates configurations for an alias of an agent.

Examples:

Request syntax with placeholder values


resp = client.update_agent_alias({
  agent_id: "Id", # required
  agent_alias_id: "AgentAliasId", # required
  agent_alias_name: "Name", # required
  description: "Description",
  routing_configuration: [
    {
      agent_version: "Version",
      provisioned_throughput: "ProvisionedModelIdentifier",
    },
  ],
  alias_invocation_state: "ACCEPT_INVOCATIONS", # accepts ACCEPT_INVOCATIONS, REJECT_INVOCATIONS
})

Response structure


resp.agent_alias.agent_id #=> String
resp.agent_alias.agent_alias_id #=> String
resp.agent_alias.agent_alias_name #=> String
resp.agent_alias.agent_alias_arn #=> String
resp.agent_alias.client_token #=> String
resp.agent_alias.description #=> String
resp.agent_alias.routing_configuration #=> Array
resp.agent_alias.routing_configuration[0].agent_version #=> String
resp.agent_alias.routing_configuration[0].provisioned_throughput #=> String
resp.agent_alias.created_at #=> Time
resp.agent_alias.updated_at #=> Time
resp.agent_alias.agent_alias_history_events #=> Array
resp.agent_alias.agent_alias_history_events[0].routing_configuration #=> Array
resp.agent_alias.agent_alias_history_events[0].routing_configuration[0].agent_version #=> String
resp.agent_alias.agent_alias_history_events[0].routing_configuration[0].provisioned_throughput #=> String
resp.agent_alias.agent_alias_history_events[0].end_date #=> Time
resp.agent_alias.agent_alias_history_events[0].start_date #=> Time
resp.agent_alias.agent_alias_status #=> String, one of "CREATING", "PREPARED", "FAILED", "UPDATING", "DELETING", "DISSOCIATED"
resp.agent_alias.failure_reasons #=> Array
resp.agent_alias.failure_reasons[0] #=> String
resp.agent_alias.alias_invocation_state #=> String, one of "ACCEPT_INVOCATIONS", "REJECT_INVOCATIONS"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent.

  • :agent_alias_id (required, String) —

    The unique identifier of the alias.

  • :agent_alias_name (required, String) —

    Specifies a new name for the alias.

  • :description (String) —

    Specifies a new description for the alias.

  • :routing_configuration (Array<Types::AgentAliasRoutingConfigurationListItem>) —

    Contains details about the routing configuration of the alias.

  • :alias_invocation_state (String) —

    The invocation state for the agent alias. To pause the agent alias, set the value to REJECT_INVOCATIONS. To start the agent alias running again, set the value to ACCEPT_INVOCATIONS. Use the GetAgentAlias, or ListAgentAliases, operation to get the invocation state of an agent alias.

Returns:

See Also:



6877
6878
6879
6880
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6877

def update_agent_alias(params = {}, options = {})
  req = build_request(:update_agent_alias, params)
  req.send_request(options)
end

#update_agent_collaborator(params = {}) ⇒ Types::UpdateAgentCollaboratorResponse

Updates an agent's collaborator.

Examples:

Request syntax with placeholder values


resp = client.update_agent_collaborator({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  collaborator_id: "Id", # required
  agent_descriptor: { # required
    alias_arn: "AgentAliasArn",
  },
  collaborator_name: "Name", # required
  collaboration_instruction: "CollaborationInstruction", # required
  relay_conversation_history: "TO_COLLABORATOR", # accepts TO_COLLABORATOR, DISABLED
})

Response structure


resp.agent_collaborator.agent_id #=> String
resp.agent_collaborator.agent_version #=> String
resp.agent_collaborator.agent_descriptor.alias_arn #=> String
resp.agent_collaborator.collaborator_id #=> String
resp.agent_collaborator.collaboration_instruction #=> String
resp.agent_collaborator.collaborator_name #=> String
resp.agent_collaborator.created_at #=> Time
resp.agent_collaborator.last_updated_at #=> Time
resp.agent_collaborator.relay_conversation_history #=> String, one of "TO_COLLABORATOR", "DISABLED"
resp.agent_collaborator.client_token #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The agent's ID.

  • :agent_version (required, String) —

    The agent's version.

  • :collaborator_id (required, String) —

    The collaborator's ID.

  • :agent_descriptor (required, Types::AgentDescriptor) —

    An agent descriptor for the agent collaborator.

  • :collaborator_name (required, String) —

    The collaborator's name.

  • :collaboration_instruction (required, String) —

    Instruction for the collaborator.

  • :relay_conversation_history (String) —

    A relay conversation history for the collaborator.

Returns:

See Also:



6940
6941
6942
6943
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 6940

def update_agent_collaborator(params = {}, options = {})
  req = build_request(:update_agent_collaborator, params)
  req.send_request(options)
end

#update_agent_knowledge_base(params = {}) ⇒ Types::UpdateAgentKnowledgeBaseResponse

Updates the configuration for a knowledge base that has been associated with an agent.

Examples:

Request syntax with placeholder values


resp = client.update_agent_knowledge_base({
  agent_id: "Id", # required
  agent_version: "DraftVersion", # required
  knowledge_base_id: "Id", # required
  description: "Description",
  knowledge_base_state: "ENABLED", # accepts ENABLED, DISABLED
})

Response structure


resp.agent_knowledge_base.agent_id #=> String
resp.agent_knowledge_base.agent_version #=> String
resp.agent_knowledge_base.knowledge_base_id #=> String
resp.agent_knowledge_base.description #=> String
resp.agent_knowledge_base.created_at #=> Time
resp.agent_knowledge_base.updated_at #=> Time
resp.agent_knowledge_base.knowledge_base_state #=> String, one of "ENABLED", "DISABLED"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :agent_id (required, String) —

    The unique identifier of the agent associated with the knowledge base that you want to update.

  • :agent_version (required, String) —

    The version of the agent associated with the knowledge base that you want to update.

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base that has been associated with an agent.

  • :description (String) —

    Specifies a new description for the knowledge base associated with an agent.

  • :knowledge_base_state (String) —

    Specifies whether the agent uses the knowledge base or not when sending an InvokeAgent request.

Returns:

See Also:



7000
7001
7002
7003
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 7000

def update_agent_knowledge_base(params = {}, options = {})
  req = build_request(:update_agent_knowledge_base, params)
  req.send_request(options)
end

#update_data_source(params = {}) ⇒ Types::UpdateDataSourceResponse

Updates the configurations for a data source connector.

You can't change the chunkingConfiguration after you create the data source connector. Specify the existing chunkingConfiguration.

Examples:

Request syntax with placeholder values


resp = client.update_data_source({
  knowledge_base_id: "Id", # required
  data_source_id: "Id", # required
  name: "Name", # required
  description: "Description",
  data_source_configuration: { # required
    type: "S3", # required, accepts S3, WEB, CONFLUENCE, SALESFORCE, SHAREPOINT, CUSTOM, REDSHIFT_METADATA, MANAGED_KNOWLEDGE_BASE_CONNECTOR
    managed_knowledge_base_connector_configuration: {
      deletion_protection_configuration: {
        deletion_protection_status: "ENABLED", # required, accepts ENABLED, DISABLED
        deletion_protection_threshold: 1,
      },
      media_extraction_configuration: {
        image_extraction_configuration: {
          image_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
        },
        audio_extraction_configuration: {
          audio_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
        },
        video_extraction_configuration: {
          video_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
        },
      },
      connector_parameters: {
      },
      sync_schedule: {
        daily: {
        },
        weekly: {
          day_of_week: "SUNDAY", # required, accepts SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY
        },
        monthly: {
          day_of_month: { # required
            day_number: 1,
            last_day_of_month: {
            },
          },
        },
      },
    },
    s3_configuration: {
      bucket_arn: "S3BucketArn", # required
      inclusion_prefixes: ["S3Prefix"],
      bucket_owner_account_id: "BucketOwnerAccountId",
    },
    web_configuration: {
      source_configuration: { # required
        url_configuration: { # required
          seed_urls: [
            {
              url: "Url",
            },
          ],
        },
      },
      crawler_configuration: {
        crawler_limits: {
          rate_limit: 1,
          max_pages: 1,
        },
        inclusion_filters: ["FilterPattern"],
        exclusion_filters: ["FilterPattern"],
        scope: "HOST_ONLY", # accepts HOST_ONLY, SUBDOMAINS
        user_agent: "UserAgent",
        user_agent_header: "UserAgentHeader",
      },
    },
    confluence_configuration: {
      source_configuration: { # required
        host_url: "HttpsUrl", # required
        host_type: "SAAS", # required, accepts SAAS
        auth_type: "BASIC", # required, accepts BASIC, OAUTH2_CLIENT_CREDENTIALS
        credentials_secret_arn: "SecretArn", # required
      },
      crawler_configuration: {
        filter_configuration: {
          type: "PATTERN", # required, accepts PATTERN
          pattern_object_filter: {
            filters: [ # required
              {
                object_type: "FilteredObjectType", # required
                inclusion_filters: ["FilterPattern"],
                exclusion_filters: ["FilterPattern"],
              },
            ],
          },
        },
      },
    },
    salesforce_configuration: {
      source_configuration: { # required
        host_url: "HttpsUrl", # required
        auth_type: "OAUTH2_CLIENT_CREDENTIALS", # required, accepts OAUTH2_CLIENT_CREDENTIALS
        credentials_secret_arn: "SecretArn", # required
      },
      crawler_configuration: {
        filter_configuration: {
          type: "PATTERN", # required, accepts PATTERN
          pattern_object_filter: {
            filters: [ # required
              {
                object_type: "FilteredObjectType", # required
                inclusion_filters: ["FilterPattern"],
                exclusion_filters: ["FilterPattern"],
              },
            ],
          },
        },
      },
    },
    share_point_configuration: {
      source_configuration: { # required
        tenant_id: "Microsoft365TenantId",
        domain: "SharePointDomain", # required
        site_urls: ["HttpsUrl"], # required
        host_type: "ONLINE", # required, accepts ONLINE
        auth_type: "OAUTH2_CLIENT_CREDENTIALS", # required, accepts OAUTH2_CLIENT_CREDENTIALS, OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS
        credentials_secret_arn: "SecretArn", # required
      },
      crawler_configuration: {
        filter_configuration: {
          type: "PATTERN", # required, accepts PATTERN
          pattern_object_filter: {
            filters: [ # required
              {
                object_type: "FilteredObjectType", # required
                inclusion_filters: ["FilterPattern"],
                exclusion_filters: ["FilterPattern"],
              },
            ],
          },
        },
      },
    },
  },
  data_deletion_policy: "RETAIN", # accepts RETAIN, DELETE
  server_side_encryption_configuration: {
    kms_key_arn: "KmsKeyArn",
  },
  vector_ingestion_configuration: {
    chunking_configuration: {
      chunking_strategy: "FIXED_SIZE", # required, accepts FIXED_SIZE, NONE, HIERARCHICAL, SEMANTIC
      fixed_size_chunking_configuration: {
        max_tokens: 1, # required
        overlap_percentage: 1, # required
      },
      hierarchical_chunking_configuration: {
        level_configurations: [ # required
          {
            max_tokens: 1, # required
          },
        ],
        overlap_tokens: 1, # required
      },
      semantic_chunking_configuration: {
        max_tokens: 1, # required
        buffer_size: 1, # required
        breakpoint_percentile_threshold: 1, # required
      },
    },
    custom_transformation_configuration: {
      intermediate_storage: { # required
        s3_location: { # required
          uri: "S3BucketUri", # required
        },
      },
      transformations: [ # required
        {
          transformation_function: { # required
            transformation_lambda_configuration: { # required
              lambda_arn: "LambdaArn", # required
            },
          },
          step_to_apply: "POST_CHUNKING", # required, accepts POST_CHUNKING
        },
      ],
    },
    parsing_configuration: {
      parsing_strategy: "BEDROCK_FOUNDATION_MODEL", # required, accepts BEDROCK_FOUNDATION_MODEL, BEDROCK_DATA_AUTOMATION, SMART_PARSING, MULTI_MODAL_EMBEDDINGS
      bedrock_foundation_model_configuration: {
        model_arn: "BedrockModelArn", # required
        parsing_prompt: {
          parsing_prompt_text: "ParsingPromptText", # required
        },
        parsing_modality: "MULTIMODAL", # accepts MULTIMODAL
      },
      bedrock_data_automation_configuration: {
        parsing_modality: "MULTIMODAL", # accepts MULTIMODAL
      },
    },
    context_enrichment_configuration: {
      type: "BEDROCK_FOUNDATION_MODEL", # required, accepts BEDROCK_FOUNDATION_MODEL
      bedrock_foundation_model_configuration: {
        enrichment_strategy_configuration: { # required
          method: "CHUNK_ENTITY_EXTRACTION", # required, accepts CHUNK_ENTITY_EXTRACTION
        },
        model_arn: "BedrockModelArn", # required
      },
    },
  },
})

Response structure


resp.data_source.knowledge_base_id #=> String
resp.data_source.data_source_id #=> String
resp.data_source.name #=> String
resp.data_source.status #=> String, one of "AVAILABLE", "DELETING", "DELETE_UNSUCCESSFUL", "CREATING", "UPDATING", "FAILED"
resp.data_source.description #=> String
resp.data_source.data_source_configuration.type #=> String, one of "S3", "WEB", "CONFLUENCE", "SALESFORCE", "SHAREPOINT", "CUSTOM", "REDSHIFT_METADATA", "MANAGED_KNOWLEDGE_BASE_CONNECTOR"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.deletion_protection_configuration.deletion_protection_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.deletion_protection_configuration.deletion_protection_threshold #=> Integer
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.image_extraction_configuration.image_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.audio_extraction_configuration.audio_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.media_extraction_configuration.video_extraction_configuration.video_extraction_status #=> String, one of "ENABLED", "DISABLED"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.sync_schedule.weekly.day_of_week #=> String, one of "SUNDAY", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY"
resp.data_source.data_source_configuration.managed_knowledge_base_connector_configuration.sync_schedule.monthly.day_of_month.day_number #=> Integer
resp.data_source.data_source_configuration.s3_configuration.bucket_arn #=> String
resp.data_source.data_source_configuration.s3_configuration.inclusion_prefixes #=> Array
resp.data_source.data_source_configuration.s3_configuration.inclusion_prefixes[0] #=> String
resp.data_source.data_source_configuration.s3_configuration. #=> String
resp.data_source.data_source_configuration.web_configuration.source_configuration.url_configuration.seed_urls #=> Array
resp.data_source.data_source_configuration.web_configuration.source_configuration.url_configuration.seed_urls[0].url #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.crawler_limits.rate_limit #=> Integer
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.crawler_limits.max_pages #=> Integer
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.inclusion_filters #=> Array
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.exclusion_filters #=> Array
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.scope #=> String, one of "HOST_ONLY", "SUBDOMAINS"
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.user_agent #=> String
resp.data_source.data_source_configuration.web_configuration.crawler_configuration.user_agent_header #=> String
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.host_url #=> String
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.host_type #=> String, one of "SAAS"
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.auth_type #=> String, one of "BASIC", "OAUTH2_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.confluence_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.confluence_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.host_url #=> String
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.auth_type #=> String, one of "OAUTH2_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.salesforce_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.salesforce_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.tenant_id #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.domain #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.site_urls #=> Array
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.site_urls[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.host_type #=> String, one of "ONLINE"
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.auth_type #=> String, one of "OAUTH2_CLIENT_CREDENTIALS", "OAUTH2_SHAREPOINT_APP_ONLY_CLIENT_CREDENTIALS"
resp.data_source.data_source_configuration.share_point_configuration.source_configuration.credentials_secret_arn #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.type #=> String, one of "PATTERN"
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].object_type #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].inclusion_filters[0] #=> String
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters #=> Array
resp.data_source.data_source_configuration.share_point_configuration.crawler_configuration.filter_configuration.pattern_object_filter.filters[0].exclusion_filters[0] #=> String
resp.data_source.server_side_encryption_configuration.kms_key_arn #=> String
resp.data_source.vector_ingestion_configuration.chunking_configuration.chunking_strategy #=> String, one of "FIXED_SIZE", "NONE", "HIERARCHICAL", "SEMANTIC"
resp.data_source.vector_ingestion_configuration.chunking_configuration.fixed_size_chunking_configuration.max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.fixed_size_chunking_configuration.overlap_percentage #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.level_configurations #=> Array
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.level_configurations[0].max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.hierarchical_chunking_configuration.overlap_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.max_tokens #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.buffer_size #=> Integer
resp.data_source.vector_ingestion_configuration.chunking_configuration.semantic_chunking_configuration.breakpoint_percentile_threshold #=> Integer
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.intermediate_storage.s3_location.uri #=> String
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations #=> Array
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations[0].transformation_function.transformation_lambda_configuration.lambda_arn #=> String
resp.data_source.vector_ingestion_configuration.custom_transformation_configuration.transformations[0].step_to_apply #=> String, one of "POST_CHUNKING"
resp.data_source.vector_ingestion_configuration.parsing_configuration.parsing_strategy #=> String, one of "BEDROCK_FOUNDATION_MODEL", "BEDROCK_DATA_AUTOMATION", "SMART_PARSING", "MULTI_MODAL_EMBEDDINGS"
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.model_arn #=> String
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.parsing_prompt.parsing_prompt_text #=> String
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_foundation_model_configuration.parsing_modality #=> String, one of "MULTIMODAL"
resp.data_source.vector_ingestion_configuration.parsing_configuration.bedrock_data_automation_configuration.parsing_modality #=> String, one of "MULTIMODAL"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.type #=> String, one of "BEDROCK_FOUNDATION_MODEL"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.bedrock_foundation_model_configuration.enrichment_strategy_configuration.method #=> String, one of "CHUNK_ENTITY_EXTRACTION"
resp.data_source.vector_ingestion_configuration.context_enrichment_configuration.bedrock_foundation_model_configuration.model_arn #=> String
resp.data_source.data_deletion_policy #=> String, one of "RETAIN", "DELETE"
resp.data_source.created_at #=> Time
resp.data_source.updated_at #=> Time
resp.data_source.failure_reasons #=> Array
resp.data_source.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base for the data source.

  • :data_source_id (required, String) —

    The unique identifier of the data source.

  • :name (required, String) —

    Specifies a new name for the data source.

  • :description (String) —

    Specifies a new description for the data source.

  • :data_source_configuration (required, Types::DataSourceConfiguration) —

    The connection configuration for the data source that you want to update.

  • :data_deletion_policy (String) —

    The data deletion policy for the data source that you want to update.

  • :server_side_encryption_configuration (Types::ServerSideEncryptionConfiguration) —

    Contains details about server-side encryption of the data source.

  • :vector_ingestion_configuration (Types::VectorIngestionConfiguration) —

    Contains details about how to ingest the documents in the data source.

Returns:

See Also:



7340
7341
7342
7343
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 7340

def update_data_source(params = {}, options = {})
  req = build_request(:update_data_source, params)
  req.send_request(options)
end

#update_flow(params = {}) ⇒ Types::UpdateFlowResponse

Modifies a flow. Include both fields that you want to keep and fields that you want to change. For more information, see How it works and Create a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.update_flow({
  name: "FlowName", # required
  description: "FlowDescription",
  execution_role_arn: "FlowExecutionRoleArn", # required
  customer_encryption_key_arn: "KmsKeyArn",
  definition: {
    nodes: [
      {
        name: "FlowNodeName", # required
        type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector, InlineCode, Loop, LoopInput, LoopController
        configuration: {
          input: {
          },
          output: {
          },
          knowledge_base: {
            knowledge_base_id: "FlowKnowledgeBaseId", # required
            model_id: "KnowledgeBaseModelIdentifier",
            guardrail_configuration: {
              guardrail_identifier: "GuardrailIdentifier",
              guardrail_version: "GuardrailVersion",
            },
            number_of_results: 1,
            prompt_template: {
              text_prompt_template: "KnowledgeBaseTextPrompt",
            },
            inference_configuration: {
              text: {
                temperature: 1.0,
                top_p: 1.0,
                max_tokens: 1,
                stop_sequences: ["String"],
              },
            },
            reranking_configuration: {
              type: "BEDROCK_RERANKING_MODEL", # required, accepts BEDROCK_RERANKING_MODEL
              bedrock_reranking_configuration: {
                model_configuration: { # required
                  model_arn: "BedrockRerankingModelArn", # required
                  additional_model_request_fields: {
                    "AdditionalModelRequestFieldsKey" => {
                    },
                  },
                },
                number_of_reranked_results: 1,
                metadata_configuration: {
                  selection_mode: "SELECTIVE", # required, accepts SELECTIVE, ALL
                  selective_mode_configuration: {
                    fields_to_include: [
                      {
                        field_name: "FieldForRerankingFieldNameString", # required
                      },
                    ],
                    fields_to_exclude: [
                      {
                        field_name: "FieldForRerankingFieldNameString", # required
                      },
                    ],
                  },
                },
              },
            },
            orchestration_configuration: {
              prompt_template: {
                text_prompt_template: "KnowledgeBaseTextPrompt",
              },
              inference_config: {
                text: {
                  temperature: 1.0,
                  top_p: 1.0,
                  max_tokens: 1,
                  stop_sequences: ["String"],
                },
              },
              additional_model_request_fields: {
                "AdditionalModelRequestFieldsKey" => {
                },
              },
              performance_config: {
                latency: "standard", # accepts standard, optimized
              },
            },
          },
          condition: {
            conditions: [ # required
              {
                name: "FlowConditionName", # required
                expression: "FlowConditionExpression",
              },
            ],
          },
          lex: {
            bot_alias_arn: "FlowLexBotAliasArn", # required
            locale_id: "FlowLexBotLocaleId", # required
          },
          prompt: {
            source_configuration: { # required
              resource: {
                prompt_arn: "FlowPromptArn", # required
              },
              inline: {
                template_type: "TEXT", # required, accepts TEXT, CHAT
                template_configuration: { # required
                  text: {
                    text: "TextPrompt", # required
                    cache_point: {
                      type: "default", # required, accepts default
                    },
                    input_variables: [
                      {
                        name: "PromptInputVariableName",
                      },
                    ],
                  },
                  chat: {
                    messages: [ # required
                      {
                        role: "user", # required, accepts user, assistant
                        content: [ # required
                          {
                            text: "String",
                            cache_point: {
                              type: "default", # required, accepts default
                            },
                          },
                        ],
                      },
                    ],
                    system: [
                      {
                        text: "NonEmptyString",
                        cache_point: {
                          type: "default", # required, accepts default
                        },
                      },
                    ],
                    input_variables: [
                      {
                        name: "PromptInputVariableName",
                      },
                    ],
                    tool_configuration: {
                      tools: [ # required
                        {
                          tool_spec: {
                            name: "ToolName", # required
                            description: "NonEmptyString",
                            input_schema: { # required
                              json: {
                              },
                            },
                            strict: false,
                          },
                          cache_point: {
                            type: "default", # required, accepts default
                          },
                        },
                      ],
                      tool_choice: {
                        auto: {
                        },
                        any: {
                        },
                        tool: {
                          name: "ToolName", # required
                        },
                      },
                    },
                  },
                },
                model_id: "FlowPromptModelIdentifier", # required
                inference_configuration: {
                  text: {
                    temperature: 1.0,
                    top_p: 1.0,
                    max_tokens: 1,
                    stop_sequences: ["String"],
                  },
                },
                additional_model_request_fields: {
                },
              },
            },
            guardrail_configuration: {
              guardrail_identifier: "GuardrailIdentifier",
              guardrail_version: "GuardrailVersion",
            },
          },
          lambda_function: {
            lambda_arn: "FlowLambdaArn", # required
          },
          storage: {
            service_configuration: { # required
              s3: {
                bucket_name: "FlowS3BucketName", # required
              },
            },
          },
          agent: {
            agent_alias_arn: "FlowAgentAliasArn", # required
          },
          retrieval: {
            service_configuration: { # required
              s3: {
                bucket_name: "FlowS3BucketName", # required
              },
            },
          },
          iterator: {
          },
          collector: {
          },
          inline_code: {
            code: "InlineCode", # required
            language: "Python_3", # required, accepts Python_3
          },
          loop: {
            definition: { # required
              # recursive FlowDefinition
            },
          },
          loop_input: {
          },
          loop_controller: {
            continue_condition: { # required
              name: "FlowConditionName", # required
              expression: "FlowConditionExpression",
            },
            max_iterations: 1,
          },
        },
        inputs: [
          {
            name: "FlowNodeInputName", # required
            type: "String", # required, accepts String, Number, Boolean, Object, Array
            expression: "FlowNodeInputExpression", # required
            category: "LoopCondition", # accepts LoopCondition, ReturnValueToLoopStart, ExitLoop
          },
        ],
        outputs: [
          {
            name: "FlowNodeOutputName", # required
            type: "String", # required, accepts String, Number, Boolean, Object, Array
          },
        ],
      },
    ],
    connections: [
      {
        type: "Data", # required, accepts Data, Conditional
        name: "FlowConnectionName", # required
        source: "FlowNodeName", # required
        target: "FlowNodeName", # required
        configuration: {
          data: {
            source_output: "FlowNodeOutputName", # required
            target_input: "FlowNodeInputName", # required
          },
          conditional: {
            condition: "FlowConditionName", # required
          },
        },
      },
    ],
  },
  flow_identifier: "FlowIdentifier", # required
})

Response structure


resp.name #=> String
resp.description #=> String
resp.execution_role_arn #=> String
resp.customer_encryption_key_arn #=> String
resp.id #=> String
resp.arn #=> String
resp.status #=> String, one of "Failed", "Prepared", "Preparing", "NotPrepared"
resp.created_at #=> Time
resp.updated_at #=> Time
resp.version #=> String
resp.definition.nodes #=> Array
resp.definition.nodes[0].name #=> String
resp.definition.nodes[0].type #=> String, one of "Input", "Output", "KnowledgeBase", "Condition", "Lex", "Prompt", "LambdaFunction", "Storage", "Agent", "Retrieval", "Iterator", "Collector", "InlineCode", "Loop", "LoopInput", "LoopController"
resp.definition.nodes[0].configuration.knowledge_base.knowledge_base_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.model_id #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.knowledge_base.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.knowledge_base.number_of_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.type #=> String, one of "BEDROCK_RERANKING_MODEL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.model_arn #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.model_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration.number_of_reranked_results #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selection_mode #=> String, one of "SELECTIVE", "ALL"
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_include[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude #=> Array
resp.definition.nodes[0].configuration.knowledge_base.reranking_configuration.bedrock_reranking_configuration..selective_mode_configuration.fields_to_exclude[0].field_name #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.prompt_template.text_prompt_template #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.temperature #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.top_p #=> Float
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.inference_config.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.additional_model_request_fields #=> Hash
resp.definition.nodes[0].configuration.knowledge_base.orchestration_configuration.performance_config.latency #=> String, one of "standard", "optimized"
resp.definition.nodes[0].configuration.condition.conditions #=> Array
resp.definition.nodes[0].configuration.condition.conditions[0].name #=> String
resp.definition.nodes[0].configuration.condition.conditions[0].expression #=> String
resp.definition.nodes[0].configuration.lex.bot_alias_arn #=> String
resp.definition.nodes[0].configuration.lex.locale_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.resource.prompt_arn #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_type #=> String, one of "TEXT", "CHAT"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.text.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].text #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.input_variables[0].name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.model_id #=> String
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.temperature #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.top_p #=> Float
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.max_tokens #=> Integer
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences #=> Array
resp.definition.nodes[0].configuration.prompt.source_configuration.inline.inference_configuration.text.stop_sequences[0] #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_identifier #=> String
resp.definition.nodes[0].configuration.prompt.guardrail_configuration.guardrail_version #=> String
resp.definition.nodes[0].configuration.lambda_function.lambda_arn #=> String
resp.definition.nodes[0].configuration.storage.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.agent.agent_alias_arn #=> String
resp.definition.nodes[0].configuration.retrieval.service_configuration.s3.bucket_name #=> String
resp.definition.nodes[0].configuration.inline_code.code #=> String
resp.definition.nodes[0].configuration.inline_code.language #=> String, one of "Python_3"
resp.definition.nodes[0].configuration.loop.definition #=> Types::FlowDefinition
resp.definition.nodes[0].configuration.loop_controller.continue_condition.name #=> String
resp.definition.nodes[0].configuration.loop_controller.continue_condition.expression #=> String
resp.definition.nodes[0].configuration.loop_controller.max_iterations #=> Integer
resp.definition.nodes[0].inputs #=> Array
resp.definition.nodes[0].inputs[0].name #=> String
resp.definition.nodes[0].inputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.nodes[0].inputs[0].expression #=> String
resp.definition.nodes[0].inputs[0].category #=> String, one of "LoopCondition", "ReturnValueToLoopStart", "ExitLoop"
resp.definition.nodes[0].outputs #=> Array
resp.definition.nodes[0].outputs[0].name #=> String
resp.definition.nodes[0].outputs[0].type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.definition.connections #=> Array
resp.definition.connections[0].type #=> String, one of "Data", "Conditional"
resp.definition.connections[0].name #=> String
resp.definition.connections[0].source #=> String
resp.definition.connections[0].target #=> String
resp.definition.connections[0].configuration.data.source_output #=> String
resp.definition.connections[0].configuration.data.target_input #=> String
resp.definition.connections[0].configuration.conditional.condition #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :name (required, String) —

    A name for the flow.

  • :description (String) —

    A description for the flow.

  • :execution_role_arn (required, String) —

    The Amazon Resource Name (ARN) of the service role with permissions to create and manage a flow. For more information, see Create a service role for flows in Amazon Bedrock in the Amazon Bedrock User Guide.

  • :customer_encryption_key_arn (String) —

    The Amazon Resource Name (ARN) of the KMS key to encrypt the flow.

  • :definition (Types::FlowDefinition) —

    A definition of the nodes and the connections between the nodes in the flow.

  • :flow_identifier (required, String) —

    The unique identifier of the flow.

Returns:

See Also:



7773
7774
7775
7776
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 7773

def update_flow(params = {}, options = {})
  req = build_request(:update_flow, params)
  req.send_request(options)
end

#update_flow_alias(params = {}) ⇒ Types::UpdateFlowAliasResponse

Modifies the alias of a flow. Include both fields that you want to keep and ones that you want to change. For more information, see Deploy a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.update_flow_alias({
  name: "Name", # required
  description: "Description",
  routing_configuration: [ # required
    {
      flow_version: "Version",
    },
  ],
  concurrency_configuration: {
    type: "Automatic", # required, accepts Automatic, Manual
    max_concurrency: 1,
  },
  flow_identifier: "FlowIdentifier", # required
  alias_identifier: "FlowAliasIdentifier", # required
})

Response structure


resp.name #=> String
resp.description #=> String
resp.routing_configuration #=> Array
resp.routing_configuration[0].flow_version #=> String
resp.concurrency_configuration.type #=> String, one of "Automatic", "Manual"
resp.concurrency_configuration.max_concurrency #=> Integer
resp.flow_id #=> String
resp.id #=> String
resp.arn #=> String
resp.created_at #=> Time
resp.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :name (required, String) —

    The name of the alias.

  • :description (String) —

    A description for the alias.

  • :routing_configuration (required, Array<Types::FlowAliasRoutingConfigurationListItem>) —

    Contains information about the version to which to map the alias.

  • :concurrency_configuration (Types::FlowAliasConcurrencyConfiguration) —

    The configuration that specifies how nodes in the flow are executed in parallel.

  • :flow_identifier (required, String) —

    The unique identifier of the flow.

  • :alias_identifier (required, String) —

    The unique identifier of the alias.

Returns:

See Also:



7853
7854
7855
7856
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 7853

def update_flow_alias(params = {}, options = {})
  req = build_request(:update_flow_alias, params)
  req.send_request(options)
end

#update_knowledge_base(params = {}) ⇒ Types::UpdateKnowledgeBaseResponse

Updates the configuration of a knowledge base with the fields that you specify. Because all fields will be overwritten, you must include the same values for fields that you want to keep the same.

You can change the following fields:

  • name

  • description

  • roleArn

You can't change the knowledgeBaseConfiguration or storageConfiguration fields, so you must specify the same configurations as when you created the knowledge base. You can send a GetKnowledgeBase request and copy the same configurations.

Examples:

Request syntax with placeholder values


resp = client.update_knowledge_base({
  knowledge_base_id: "Id", # required
  name: "Name", # required
  description: "Description",
  role_arn: "KnowledgeBaseRoleArn", # required
  knowledge_base_configuration: { # required
    type: "VECTOR", # required, accepts VECTOR, KENDRA, SQL, MANAGED
    vector_knowledge_base_configuration: {
      embedding_model_arn: "BedrockEmbeddingModelArn", # required
      embedding_model_configuration: {
        bedrock_embedding_model_configuration: {
          dimensions: 1,
          embedding_data_type: "FLOAT32", # accepts FLOAT32, BINARY
          audio: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          video: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          model_configuration: {
          },
        },
      },
      supplemental_data_storage_configuration: {
        storage_locations: [ # required
          {
            type: "S3", # required, accepts S3
            s3_location: {
              uri: "S3BucketUri", # required
            },
          },
        ],
      },
    },
    managed_knowledge_base_configuration: {
      embedding_model_type: "CUSTOM", # accepts CUSTOM, MANAGED
      embedding_model_arn: "BedrockEmbeddingModelArn",
      embedding_model_configuration: {
        bedrock_embedding_model_configuration: {
          dimensions: 1,
          embedding_data_type: "FLOAT32", # accepts FLOAT32, BINARY
          audio: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          video: [
            {
              segmentation_configuration: { # required
                fixed_length_duration: 1, # required
              },
            },
          ],
          model_configuration: {
          },
        },
      },
      server_side_encryption_configuration: {
        kms_key_arn: "KmsKeyArn",
      },
      supplemental_data_storage_configuration: {
        storage_locations: [ # required
          {
            type: "S3", # required, accepts S3
            s3_location: {
              uri: "S3BucketUri", # required
            },
          },
        ],
      },
    },
    kendra_knowledge_base_configuration: {
      kendra_index_arn: "KendraIndexArn", # required
    },
    sql_knowledge_base_configuration: {
      type: "REDSHIFT", # required, accepts REDSHIFT
      redshift_configuration: {
        storage_configurations: [ # required
          {
            type: "REDSHIFT", # required, accepts REDSHIFT, AWS_DATA_CATALOG
            aws_data_catalog_configuration: {
              table_names: ["AwsDataCatalogTableName"], # required
            },
            redshift_configuration: {
              database_name: "RedshiftDatabase", # required
            },
          },
        ],
        query_engine_configuration: { # required
          type: "SERVERLESS", # required, accepts SERVERLESS, PROVISIONED
          serverless_configuration: {
            workgroup_arn: "WorkgroupArn", # required
            auth_configuration: { # required
              type: "IAM", # required, accepts IAM, USERNAME_PASSWORD
              username_password_secret_arn: "SecretArn",
            },
          },
          provisioned_configuration: {
            cluster_identifier: "RedshiftClusterIdentifier", # required
            auth_configuration: { # required
              type: "IAM", # required, accepts IAM, USERNAME_PASSWORD, USERNAME
              database_user: "String",
              username_password_secret_arn: "SecretArn",
            },
          },
        },
        query_generation_configuration: {
          execution_timeout_seconds: 1,
          generation_context: {
            tables: [
              {
                name: "QueryGenerationTableName", # required
                description: "DescriptionString",
                inclusion: "INCLUDE", # accepts INCLUDE, EXCLUDE
                columns: [
                  {
                    name: "QueryGenerationColumnName",
                    description: "DescriptionString",
                    inclusion: "INCLUDE", # accepts INCLUDE, EXCLUDE
                  },
                ],
              },
            ],
            curated_queries: [
              {
                natural_language: "NaturalLanguageString", # required
                sql: "SqlString", # required
              },
            ],
          },
        },
      },
    },
  },
  storage_configuration: {
    type: "OPENSEARCH_SERVERLESS", # required, accepts OPENSEARCH_SERVERLESS, PINECONE, REDIS_ENTERPRISE_CLOUD, RDS, MONGO_DB_ATLAS, NEPTUNE_ANALYTICS, OPENSEARCH_MANAGED_CLUSTER, S3_VECTORS
    opensearch_serverless_configuration: {
      collection_arn: "OpenSearchServerlessCollectionArn", # required
      vector_index_name: "OpenSearchServerlessIndexName", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    opensearch_managed_cluster_configuration: {
      domain_endpoint: "OpenSearchManagedClusterDomainEndpoint", # required
      domain_arn: "OpenSearchManagedClusterDomainArn", # required
      vector_index_name: "OpenSearchManagedClusterIndexName", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    pinecone_configuration: {
      connection_string: "PineconeConnectionString", # required
      credentials_secret_arn: "SecretArn", # required
      namespace: "PineconeNamespace",
      field_mapping: { # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    redis_enterprise_cloud_configuration: {
      endpoint: "RedisEnterpriseCloudEndpoint", # required
      vector_index_name: "RedisEnterpriseCloudIndexName", # required
      credentials_secret_arn: "SecretArn", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    rds_configuration: {
      resource_arn: "RdsArn", # required
      credentials_secret_arn: "SecretArn", # required
      database_name: "RdsDatabaseName", # required
      table_name: "RdsTableName", # required
      field_mapping: { # required
        primary_key_field: "ColumnName", # required
        vector_field: "ColumnName", # required
        text_field: "ColumnName", # required
        metadata_field: "ColumnName", # required
        custom_metadata_field: "ColumnName",
      },
    },
    mongo_db_atlas_configuration: {
      endpoint: "MongoDbAtlasEndpoint", # required
      database_name: "MongoDbAtlasDatabaseName", # required
      collection_name: "MongoDbAtlasCollectionName", # required
      vector_index_name: "MongoDbAtlasIndexName", # required
      credentials_secret_arn: "SecretArn", # required
      field_mapping: { # required
        vector_field: "FieldName", # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
      endpoint_service_name: "MongoDbAtlasEndpointServiceName",
      text_index_name: "MongoDbAtlasIndexName",
    },
    neptune_analytics_configuration: {
      graph_arn: "GraphArn", # required
      field_mapping: { # required
        text_field: "FieldName", # required
        metadata_field: "FieldName", # required
      },
    },
    s3_vectors_configuration: {
      vector_bucket_arn: "VectorBucketArn",
      index_arn: "IndexArn",
      index_name: "IndexName",
    },
  },
})

Response structure


resp.knowledge_base.knowledge_base_id #=> String
resp.knowledge_base.name #=> String
resp.knowledge_base.knowledge_base_arn #=> String
resp.knowledge_base.description #=> String
resp.knowledge_base.role_arn #=> String
resp.knowledge_base.knowledge_base_configuration.type #=> String, one of "VECTOR", "KENDRA", "SQL", "MANAGED"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_arn #=> String
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.dimensions #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.embedding_data_type #=> String, one of "FLOAT32", "BINARY"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations #=> Array
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].type #=> String, one of "S3"
resp.knowledge_base.knowledge_base_configuration.vector_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].s3_location.uri #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_type #=> String, one of "CUSTOM", "MANAGED"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_arn #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.dimensions #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.embedding_data_type #=> String, one of "FLOAT32", "BINARY"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.audio[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.embedding_model_configuration.bedrock_embedding_model_configuration.video[0].segmentation_configuration.fixed_length_duration #=> Integer
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.server_side_encryption_configuration.kms_key_arn #=> String
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations #=> Array
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].type #=> String, one of "S3"
resp.knowledge_base.knowledge_base_configuration.managed_knowledge_base_configuration.supplemental_data_storage_configuration.storage_locations[0].s3_location.uri #=> String
resp.knowledge_base.knowledge_base_configuration.kendra_knowledge_base_configuration.kendra_index_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.type #=> String, one of "REDSHIFT"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].type #=> String, one of "REDSHIFT", "AWS_DATA_CATALOG"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].aws_data_catalog_configuration.table_names #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].aws_data_catalog_configuration.table_names[0] #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.storage_configurations[0].redshift_configuration.database_name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.type #=> String, one of "SERVERLESS", "PROVISIONED"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.workgroup_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.auth_configuration.type #=> String, one of "IAM", "USERNAME_PASSWORD"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.serverless_configuration.auth_configuration.username_password_secret_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.cluster_identifier #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.type #=> String, one of "IAM", "USERNAME_PASSWORD", "USERNAME"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.database_user #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_engine_configuration.provisioned_configuration.auth_configuration.username_password_secret_arn #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.execution_timeout_seconds #=> Integer
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].description #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].inclusion #=> String, one of "INCLUDE", "EXCLUDE"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].name #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].description #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.tables[0].columns[0].inclusion #=> String, one of "INCLUDE", "EXCLUDE"
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries #=> Array
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries[0].natural_language #=> String
resp.knowledge_base.knowledge_base_configuration.sql_knowledge_base_configuration.redshift_configuration.query_generation_configuration.generation_context.curated_queries[0].sql #=> String
resp.knowledge_base.storage_configuration.type #=> String, one of "OPENSEARCH_SERVERLESS", "PINECONE", "REDIS_ENTERPRISE_CLOUD", "RDS", "MONGO_DB_ATLAS", "NEPTUNE_ANALYTICS", "OPENSEARCH_MANAGED_CLUSTER", "S3_VECTORS"
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.collection_arn #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.opensearch_serverless_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_endpoint #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.domain_arn #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.opensearch_managed_cluster_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.connection_string #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.namespace #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.pinecone_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.endpoint #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.redis_enterprise_cloud_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.rds_configuration.resource_arn #=> String
resp.knowledge_base.storage_configuration.rds_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.rds_configuration.database_name #=> String
resp.knowledge_base.storage_configuration.rds_configuration.table_name #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.primary_key_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.rds_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.endpoint #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.database_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.collection_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.vector_index_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.credentials_secret_arn #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.vector_field #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.endpoint_service_name #=> String
resp.knowledge_base.storage_configuration.mongo_db_atlas_configuration.text_index_name #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.graph_arn #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping.text_field #=> String
resp.knowledge_base.storage_configuration.neptune_analytics_configuration.field_mapping. #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.vector_bucket_arn #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_arn #=> String
resp.knowledge_base.storage_configuration.s3_vectors_configuration.index_name #=> String
resp.knowledge_base.status #=> String, one of "CREATING", "ACTIVE", "DELETING", "UPDATING", "FAILED", "DELETE_UNSUCCESSFUL", "UPDATE_UNSUCCESSFUL"
resp.knowledge_base.created_at #=> Time
resp.knowledge_base.updated_at #=> Time
resp.knowledge_base.failure_reasons #=> Array
resp.knowledge_base.failure_reasons[0] #=> String

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :knowledge_base_id (required, String) —

    The unique identifier of the knowledge base to update.

  • :name (required, String) —

    Specifies a new name for the knowledge base.

  • :description (String) —

    Specifies a new description for the knowledge base.

  • :role_arn (required, String) —

    Specifies a different Amazon Resource Name (ARN) of the IAM role with permissions to invoke API operations on the knowledge base.

  • :knowledge_base_configuration (required, Types::KnowledgeBaseConfiguration) —

    Specifies the configuration for the embeddings model used for the knowledge base. You must use the same configuration as when the knowledge base was created.

  • :storage_configuration (Types::StorageConfiguration) —

    Specifies the configuration for the vector store used for the knowledge base. You must use the same configuration as when the knowledge base was created.

Returns:

See Also:



8249
8250
8251
8252
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 8249

def update_knowledge_base(params = {}, options = {})
  req = build_request(:update_knowledge_base, params)
  req.send_request(options)
end

#update_prompt(params = {}) ⇒ Types::UpdatePromptResponse

Modifies a prompt in your prompt library. Include both fields that you want to keep and fields that you want to replace. For more information, see Prompt management in Amazon Bedrock and Edit prompts in your prompt library in the Amazon Bedrock User Guide.

Examples:

Request syntax with placeholder values


resp = client.update_prompt({
  name: "PromptName", # required
  description: "PromptDescription",
  customer_encryption_key_arn: "KmsKeyArn",
  default_variant: "PromptVariantName",
  variants: [
    {
      name: "PromptVariantName", # required
      template_type: "TEXT", # required, accepts TEXT, CHAT
      template_configuration: { # required
        text: {
          text: "TextPrompt", # required
          cache_point: {
            type: "default", # required, accepts default
          },
          input_variables: [
            {
              name: "PromptInputVariableName",
            },
          ],
        },
        chat: {
          messages: [ # required
            {
              role: "user", # required, accepts user, assistant
              content: [ # required
                {
                  text: "String",
                  cache_point: {
                    type: "default", # required, accepts default
                  },
                },
              ],
            },
          ],
          system: [
            {
              text: "NonEmptyString",
              cache_point: {
                type: "default", # required, accepts default
              },
            },
          ],
          input_variables: [
            {
              name: "PromptInputVariableName",
            },
          ],
          tool_configuration: {
            tools: [ # required
              {
                tool_spec: {
                  name: "ToolName", # required
                  description: "NonEmptyString",
                  input_schema: { # required
                    json: {
                    },
                  },
                  strict: false,
                },
                cache_point: {
                  type: "default", # required, accepts default
                },
              },
            ],
            tool_choice: {
              auto: {
              },
              any: {
              },
              tool: {
                name: "ToolName", # required
              },
            },
          },
        },
      },
      model_id: "PromptModelIdentifier",
      inference_configuration: {
        text: {
          temperature: 1.0,
          top_p: 1.0,
          max_tokens: 1,
          stop_sequences: ["String"],
        },
      },
      metadata: [
        {
          key: "PromptMetadataKey", # required
          value: "PromptMetadataValue", # required
        },
      ],
      additional_model_request_fields: {
      },
      gen_ai_resource: {
        agent: {
          agent_identifier: "AgentAliasArn", # required
        },
      },
    },
  ],
  prompt_identifier: "PromptIdentifier", # required
})

Response structure


resp.name #=> String
resp.description #=> String
resp.customer_encryption_key_arn #=> String
resp.default_variant #=> String
resp.variants #=> Array
resp.variants[0].name #=> String
resp.variants[0].template_type #=> String, one of "TEXT", "CHAT"
resp.variants[0].template_configuration.text.text #=> String
resp.variants[0].template_configuration.text.cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.text.input_variables #=> Array
resp.variants[0].template_configuration.text.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.messages #=> Array
resp.variants[0].template_configuration.chat.messages[0].role #=> String, one of "user", "assistant"
resp.variants[0].template_configuration.chat.messages[0].content #=> Array
resp.variants[0].template_configuration.chat.messages[0].content[0].text #=> String
resp.variants[0].template_configuration.chat.messages[0].content[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.system #=> Array
resp.variants[0].template_configuration.chat.system[0].text #=> String
resp.variants[0].template_configuration.chat.system[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.input_variables #=> Array
resp.variants[0].template_configuration.chat.input_variables[0].name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools #=> Array
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.name #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.description #=> String
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].tool_spec.strict #=> Boolean
resp.variants[0].template_configuration.chat.tool_configuration.tools[0].cache_point.type #=> String, one of "default"
resp.variants[0].template_configuration.chat.tool_configuration.tool_choice.tool.name #=> String
resp.variants[0].model_id #=> String
resp.variants[0].inference_configuration.text.temperature #=> Float
resp.variants[0].inference_configuration.text.top_p #=> Float
resp.variants[0].inference_configuration.text.max_tokens #=> Integer
resp.variants[0].inference_configuration.text.stop_sequences #=> Array
resp.variants[0].inference_configuration.text.stop_sequences[0] #=> String
resp.variants[0]. #=> Array
resp.variants[0].[0].key #=> String
resp.variants[0].[0].value #=> String
resp.variants[0].gen_ai_resource.agent.agent_identifier #=> String
resp.id #=> String
resp.arn #=> String
resp.version #=> String
resp.created_at #=> Time
resp.updated_at #=> Time

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

  • :name (required, String) —

    A name for the prompt.

  • :description (String) —

    A description for the prompt.

  • :customer_encryption_key_arn (String) —

    The Amazon Resource Name (ARN) of the KMS key to encrypt the prompt.

  • :default_variant (String) —

    The name of the default variant for the prompt. This value must match the name field in the relevant PromptVariant object.

  • :variants (Array<Types::PromptVariant>) —

    A list of objects, each containing details about a variant of the prompt.

  • :prompt_identifier (required, String) —

    The unique identifier of the prompt.

Returns:

See Also:



8456
8457
8458
8459
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 8456

def update_prompt(params = {}, options = {})
  req = build_request(:update_prompt, params)
  req.send_request(options)
end

#validate_flow_definition(params = {}) ⇒ Types::ValidateFlowDefinitionResponse

Validates the definition of a flow.

Examples:

Request syntax with placeholder values


resp = client.validate_flow_definition({
  definition: { # required
    nodes: [
      {
        name: "FlowNodeName", # required
        type: "Input", # required, accepts Input, Output, KnowledgeBase, Condition, Lex, Prompt, LambdaFunction, Storage, Agent, Retrieval, Iterator, Collector, InlineCode, Loop, LoopInput, LoopController
        configuration: {
          input: {
          },
          output: {
          },
          knowledge_base: {
            knowledge_base_id: "FlowKnowledgeBaseId", # required
            model_id: "KnowledgeBaseModelIdentifier",
            guardrail_configuration: {
              guardrail_identifier: "GuardrailIdentifier",
              guardrail_version: "GuardrailVersion",
            },
            number_of_results: 1,
            prompt_template: {
              text_prompt_template: "KnowledgeBaseTextPrompt",
            },
            inference_configuration: {
              text: {
                temperature: 1.0,
                top_p: 1.0,
                max_tokens: 1,
                stop_sequences: ["String"],
              },
            },
            reranking_configuration: {
              type: "BEDROCK_RERANKING_MODEL", # required, accepts BEDROCK_RERANKING_MODEL
              bedrock_reranking_configuration: {
                model_configuration: { # required
                  model_arn: "BedrockRerankingModelArn", # required
                  additional_model_request_fields: {
                    "AdditionalModelRequestFieldsKey" => {
                    },
                  },
                },
                number_of_reranked_results: 1,
                metadata_configuration: {
                  selection_mode: "SELECTIVE", # required, accepts SELECTIVE, ALL
                  selective_mode_configuration: {
                    fields_to_include: [
                      {
                        field_name: "FieldForRerankingFieldNameString", # required
                      },
                    ],
                    fields_to_exclude: [
                      {
                        field_name: "FieldForRerankingFieldNameString", # required
                      },
                    ],
                  },
                },
              },
            },
            orchestration_configuration: {
              prompt_template: {
                text_prompt_template: "KnowledgeBaseTextPrompt",
              },
              inference_config: {
                text: {
                  temperature: 1.0,
                  top_p: 1.0,
                  max_tokens: 1,
                  stop_sequences: ["String"],
                },
              },
              additional_model_request_fields: {
                "AdditionalModelRequestFieldsKey" => {
                },
              },
              performance_config: {
                latency: "standard", # accepts standard, optimized
              },
            },
          },
          condition: {
            conditions: [ # required
              {
                name: "FlowConditionName", # required
                expression: "FlowConditionExpression",
              },
            ],
          },
          lex: {
            bot_alias_arn: "FlowLexBotAliasArn", # required
            locale_id: "FlowLexBotLocaleId", # required
          },
          prompt: {
            source_configuration: { # required
              resource: {
                prompt_arn: "FlowPromptArn", # required
              },
              inline: {
                template_type: "TEXT", # required, accepts TEXT, CHAT
                template_configuration: { # required
                  text: {
                    text: "TextPrompt", # required
                    cache_point: {
                      type: "default", # required, accepts default
                    },
                    input_variables: [
                      {
                        name: "PromptInputVariableName",
                      },
                    ],
                  },
                  chat: {
                    messages: [ # required
                      {
                        role: "user", # required, accepts user, assistant
                        content: [ # required
                          {
                            text: "String",
                            cache_point: {
                              type: "default", # required, accepts default
                            },
                          },
                        ],
                      },
                    ],
                    system: [
                      {
                        text: "NonEmptyString",
                        cache_point: {
                          type: "default", # required, accepts default
                        },
                      },
                    ],
                    input_variables: [
                      {
                        name: "PromptInputVariableName",
                      },
                    ],
                    tool_configuration: {
                      tools: [ # required
                        {
                          tool_spec: {
                            name: "ToolName", # required
                            description: "NonEmptyString",
                            input_schema: { # required
                              json: {
                              },
                            },
                            strict: false,
                          },
                          cache_point: {
                            type: "default", # required, accepts default
                          },
                        },
                      ],
                      tool_choice: {
                        auto: {
                        },
                        any: {
                        },
                        tool: {
                          name: "ToolName", # required
                        },
                      },
                    },
                  },
                },
                model_id: "FlowPromptModelIdentifier", # required
                inference_configuration: {
                  text: {
                    temperature: 1.0,
                    top_p: 1.0,
                    max_tokens: 1,
                    stop_sequences: ["String"],
                  },
                },
                additional_model_request_fields: {
                },
              },
            },
            guardrail_configuration: {
              guardrail_identifier: "GuardrailIdentifier",
              guardrail_version: "GuardrailVersion",
            },
          },
          lambda_function: {
            lambda_arn: "FlowLambdaArn", # required
          },
          storage: {
            service_configuration: { # required
              s3: {
                bucket_name: "FlowS3BucketName", # required
              },
            },
          },
          agent: {
            agent_alias_arn: "FlowAgentAliasArn", # required
          },
          retrieval: {
            service_configuration: { # required
              s3: {
                bucket_name: "FlowS3BucketName", # required
              },
            },
          },
          iterator: {
          },
          collector: {
          },
          inline_code: {
            code: "InlineCode", # required
            language: "Python_3", # required, accepts Python_3
          },
          loop: {
            definition: { # required
              # recursive FlowDefinition
            },
          },
          loop_input: {
          },
          loop_controller: {
            continue_condition: { # required
              name: "FlowConditionName", # required
              expression: "FlowConditionExpression",
            },
            max_iterations: 1,
          },
        },
        inputs: [
          {
            name: "FlowNodeInputName", # required
            type: "String", # required, accepts String, Number, Boolean, Object, Array
            expression: "FlowNodeInputExpression", # required
            category: "LoopCondition", # accepts LoopCondition, ReturnValueToLoopStart, ExitLoop
          },
        ],
        outputs: [
          {
            name: "FlowNodeOutputName", # required
            type: "String", # required, accepts String, Number, Boolean, Object, Array
          },
        ],
      },
    ],
    connections: [
      {
        type: "Data", # required, accepts Data, Conditional
        name: "FlowConnectionName", # required
        source: "FlowNodeName", # required
        target: "FlowNodeName", # required
        configuration: {
          data: {
            source_output: "FlowNodeOutputName", # required
            target_input: "FlowNodeInputName", # required
          },
          conditional: {
            condition: "FlowConditionName", # required
          },
        },
      },
    ],
  },
})

Response structure


resp.validations #=> Array
resp.validations[0].message #=> String
resp.validations[0].severity #=> String, one of "Warning", "Error"
resp.validations[0].details.cyclic_connection.connection #=> String
resp.validations[0].details.duplicate_connections.source #=> String
resp.validations[0].details.duplicate_connections.target #=> String
resp.validations[0].details.duplicate_condition_expression.node #=> String
resp.validations[0].details.duplicate_condition_expression.expression #=> String
resp.validations[0].details.unreachable_node.node #=> String
resp.validations[0].details.unknown_connection_source.connection #=> String
resp.validations[0].details.unknown_connection_source_output.connection #=> String
resp.validations[0].details.unknown_connection_target.connection #=> String
resp.validations[0].details.unknown_connection_target_input.connection #=> String
resp.validations[0].details.unknown_connection_condition.connection #=> String
resp.validations[0].details.malformed_condition_expression.node #=> String
resp.validations[0].details.malformed_condition_expression.condition #=> String
resp.validations[0].details.malformed_condition_expression.cause #=> String
resp.validations[0].details.malformed_node_input_expression.node #=> String
resp.validations[0].details.malformed_node_input_expression.input #=> String
resp.validations[0].details.malformed_node_input_expression.cause #=> String
resp.validations[0].details.mismatched_node_input_type.node #=> String
resp.validations[0].details.mismatched_node_input_type.input #=> String
resp.validations[0].details.mismatched_node_input_type.expected_type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.validations[0].details.mismatched_node_output_type.node #=> String
resp.validations[0].details.mismatched_node_output_type.output #=> String
resp.validations[0].details.mismatched_node_output_type.expected_type #=> String, one of "String", "Number", "Boolean", "Object", "Array"
resp.validations[0].details.incompatible_connection_data_type.connection #=> String
resp.validations[0].details.missing_connection_configuration.connection #=> String
resp.validations[0].details.missing_default_condition.node #=> String
resp.validations[0].details.missing_node_configuration.node #=> String
resp.validations[0].details.missing_node_input.node #=> String
resp.validations[0].details.missing_node_input.input #=> String
resp.validations[0].details.missing_node_output.node #=> String
resp.validations[0].details.missing_node_output.output #=> String
resp.validations[0].details.multiple_node_input_connections.node #=> String
resp.validations[0].details.multiple_node_input_connections.input #=> String
resp.validations[0].details.unfulfilled_node_input.node #=> String
resp.validations[0].details.unfulfilled_node_input.input #=> String
resp.validations[0].details.unsatisfied_connection_conditions.connection #=> String
resp.validations[0].details.unknown_node_input.node #=> String
resp.validations[0].details.unknown_node_input.input #=> String
resp.validations[0].details.unknown_node_output.node #=> String
resp.validations[0].details.unknown_node_output.output #=> String
resp.validations[0].details.missing_loop_input_node.loop_node #=> String
resp.validations[0].details.missing_loop_controller_node.loop_node #=> String
resp.validations[0].details.multiple_loop_input_nodes.loop_node #=> String
resp.validations[0].details.multiple_loop_controller_nodes.loop_node #=> String
resp.validations[0].details.loop_incompatible_node_type.node #=> String
resp.validations[0].details.loop_incompatible_node_type.incompatible_node_type #=> String, one of "Input", "Condition", "Iterator", "Collector"
resp.validations[0].details.loop_incompatible_node_type.incompatible_node_name #=> String
resp.validations[0].details.invalid_loop_boundary.connection #=> String
resp.validations[0].details.invalid_loop_boundary.source #=> String
resp.validations[0].details.invalid_loop_boundary.target #=> String
resp.validations[0].type #=> String, one of "CyclicConnection", "DuplicateConnections", "DuplicateConditionExpression", "UnreachableNode", "UnknownConnectionSource", "UnknownConnectionSourceOutput", "UnknownConnectionTarget", "UnknownConnectionTargetInput", "UnknownConnectionCondition", "MalformedConditionExpression", "MalformedNodeInputExpression", "MismatchedNodeInputType", "MismatchedNodeOutputType", "IncompatibleConnectionDataType", "MissingConnectionConfiguration", "MissingDefaultCondition", "MissingEndingNodes", "MissingNodeConfiguration", "MissingNodeInput", "MissingNodeOutput", "MissingStartingNodes", "MultipleNodeInputConnections", "UnfulfilledNodeInput", "UnsatisfiedConnectionConditions", "Unspecified", "UnknownNodeInput", "UnknownNodeOutput", "MissingLoopInputNode", "MissingLoopControllerNode", "MultipleLoopInputNodes", "MultipleLoopControllerNodes", "LoopIncompatibleNodeType", "InvalidLoopBoundary"

Parameters:

  • params (Hash) (defaults to: {}) —

    ({})

Options Hash (params):

Returns:

See Also:



8796
8797
8798
8799
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/client.rb', line 8796

def validate_flow_definition(params = {}, options = {})
  req = build_request(:validate_flow_definition, params)
  req.send_request(options)
end