npm.io
3.1092.0 • Published 1h ago

@aws-sdk/client-bedrock-agentcore-control

Licence
Apache-2.0
Version
3.1092.0
Deps
8
Size
3.3 MB
Vulns
0
Weekly
0
Stars
3.6K

@aws-sdk/client-bedrock-agentcore-control

Description

AWS SDK for JavaScript BedrockAgentCoreControl Client for Node.js, Browser and React Native.

Welcome to the Amazon Bedrock AgentCore Control plane API reference. Control plane actions configure, create, modify, and monitor Amazon Web Services resources.

Installing

To install this package, use the CLI of your favorite package manager:

  • npm install @aws-sdk/client-bedrock-agentcore-control
  • yarn add @aws-sdk/client-bedrock-agentcore-control
  • pnpm add @aws-sdk/client-bedrock-agentcore-control

Getting Started

Import

The AWS SDK is modulized by clients and commands. To send a request, you only need to import the BedrockAgentCoreControlClient and the commands you need, for example ListAgentRuntimesCommand:

// ES5 example
const { BedrockAgentCoreControlClient, ListAgentRuntimesCommand } = require("@aws-sdk/client-bedrock-agentcore-control");
// ES6+ example
import { BedrockAgentCoreControlClient, ListAgentRuntimesCommand } from "@aws-sdk/client-bedrock-agentcore-control";
Usage

To send a request:

  • Instantiate a client with configuration (e.g. credentials, region).
  • Instantiate a command with input parameters.
  • Call the send operation on the client, providing the command object as input.
const client = new BedrockAgentCoreControlClient({ region: "REGION" });

const params = { /** input parameters */ };
const command = new ListAgentRuntimesCommand(params);
Async/await

We recommend using the await operator to wait for the promise returned by send operation as follows:

// async/await.
try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  // error handling.
} finally {
  // finally.
}
Promises

You can also use Promise chaining.

client
  .send(command)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  })
  .finally(() => {
    // finally.
  });
Aggregated client

The aggregated client class is exported from the same package, but without the "Client" suffix.

BedrockAgentCoreControl extends BedrockAgentCoreControlClient and additionally supports all operations, waiters, and paginators as methods. This style may be familiar to you from the AWS SDK for JavaScript v2.

If you are bundling the AWS SDK, we recommend using only the bare-bones client (BedrockAgentCoreControlClient). More details are in the blog post on modular packages in AWS SDK for JavaScript.

import { BedrockAgentCoreControl } from "@aws-sdk/client-bedrock-agentcore-control";

const client = new BedrockAgentCoreControl({ region: "REGION" });

// async/await.
try {
  const data = await client.listAgentRuntimes(params);
  // process data.
} catch (error) {
  // error handling.
}

// Promises.
client
  .listAgentRuntimes(params)
  .then((data) => {
    // process data.
  })
  .catch((error) => {
    // error handling.
  });

// callbacks (not recommended).
client.listAgentRuntimes(params, (err, data) => {
  // process err and data.
});
Troubleshooting

When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).

try {
  const data = await client.send(command);
  // process data.
} catch (error) {
  const { requestId, cfId, extendedRequestId } = error.$metadata;
  console.log({ requestId, cfId, extendedRequestId });
  /**
   * The keys within exceptions are also parsed.
   * You can access them by specifying exception names:
   * if (error.name === 'SomeServiceException') {
   *     const value = error.specialKeyInException;
   * }
   */
}

See also docs/ERROR_HANDLING.

Getting Help

Please use these community resources for getting help. We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.

To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.

Contributing

This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-bedrock-agentcore-control package is updated. To contribute to client you can check our generate clients scripts.

License

This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.

Client Commands (Operations List)

AddDatasetExamples

Command API Reference / Input / Output

CreateAgentRuntime

Command API Reference / Input / Output

CreateAgentRuntimeEndpoint

Command API Reference / Input / Output

CreateApiKeyCredentialProvider

Command API Reference / Input / Output

CreateBrowser

Command API Reference / Input / Output

CreateBrowserProfile

Command API Reference / Input / Output

CreateCodeInterpreter

Command API Reference / Input / Output

CreateConfigurationBundle

Command API Reference / Input / Output

CreateDataset

Command API Reference / Input / Output

CreateDatasetVersion

Command API Reference / Input / Output

CreateEvaluator

Command API Reference / Input / Output

CreateGateway

Command API Reference / Input / Output

CreateGatewayRule

Command API Reference / Input / Output

CreateGatewayTarget

Command API Reference / Input / Output

CreateHarness

Command API Reference / Input / Output

CreateHarnessEndpoint

Command API Reference / Input / Output

CreateMemory

Command API Reference / Input / Output

CreateOauth2CredentialProvider

Command API Reference / Input / Output

CreateOnlineEvaluationConfig

Command API Reference / Input / Output

CreatePaymentConnector

Command API Reference / Input / Output

CreatePaymentCredentialProvider

Command API Reference / Input / Output

CreatePaymentManager

Command API Reference / Input / Output

CreatePolicy

Command API Reference / Input / Output

CreatePolicyEngine

Command API Reference / Input / Output

CreateRegistry

Command API Reference / Input / Output

CreateRegistryRecord

Command API Reference / Input / Output

CreateWorkloadIdentity

Command API Reference / Input / Output

DeleteAgentRuntime

Command API Reference / Input / Output

DeleteAgentRuntimeEndpoint

Command API Reference / Input / Output

DeleteApiKeyCredentialProvider

Command API Reference / Input / Output

DeleteBrowser

Command API Reference / Input / Output

DeleteBrowserProfile

Command API Reference / Input / Output

DeleteCodeInterpreter

Command API Reference / Input / Output

DeleteConfigurationBundle

Command API Reference / Input / Output

DeleteDataset

Command API Reference / Input / Output

DeleteDatasetExamples

Command API Reference / Input / Output

DeleteEvaluator

Command API Reference / Input / Output

DeleteGateway

Command API Reference / Input / Output

DeleteGatewayRule

Command API Reference / Input / Output

DeleteGatewayTarget

Command API Reference / Input / Output

DeleteHarness

Command API Reference / Input / Output

DeleteHarnessEndpoint

Command API Reference / Input / Output

DeleteMemory

Command API Reference / Input / Output

DeleteOauth2CredentialProvider

Command API Reference / Input / Output

DeleteOnlineEvaluationConfig

Command API Reference / Input / Output

DeletePaymentConnector

Command API Reference / Input / Output

DeletePaymentCredentialProvider

Command API Reference / Input / Output

DeletePaymentManager

Command API Reference / Input / Output

DeletePolicy

Command API Reference / Input / Output

DeletePolicyEngine

Command API Reference / Input / Output

DeleteRegistry

Command API Reference / Input / Output

DeleteRegistryRecord

Command API Reference / Input / Output

DeleteResourcePolicy

Command API Reference / Input / Output

DeleteWorkloadIdentity

Command API Reference / Input / Output

GetAgentRuntime

Command API Reference / Input / Output

GetAgentRuntimeEndpoint

Command API Reference / Input / Output

GetApiKeyCredentialProvider

Command API Reference / Input / Output

GetBrowser

Command API Reference / Input / Output

GetBrowserProfile

Command API Reference / Input / Output

GetCodeInterpreter

Command API Reference / Input / Output

GetConfigurationBundle

Command API Reference / Input / Output

GetConfigurationBundleVersion

Command API Reference / Input / Output

GetDataset

Command API Reference / Input / Output

GetEvaluator

Command API Reference / Input / Output

GetGateway

Command API Reference / Input / Output

GetGatewayRule

Command API Reference / Input / Output

GetGatewayTarget

Command API Reference / Input / Output

GetHarness

Command API Reference / Input / Output

GetHarnessEndpoint

Command API Reference / Input / Output

GetMemory

Command API Reference / Input / Output

GetOauth2CredentialProvider

Command API Reference / Input / Output

GetOnlineEvaluationConfig

Command API Reference / Input / Output

GetPaymentConnector

Command API Reference / Input / Output

GetPaymentCredentialProvider

Command API Reference / Input / Output

GetPaymentManager

Command API Reference / Input / Output

GetPolicy

Command API Reference / Input / Output

GetPolicyEngine

Command API Reference / Input / Output

GetPolicyEngineSummary

Command API Reference / Input / Output

GetPolicyGeneration

Command API Reference / Input / Output

GetPolicyGenerationSummary

Command API Reference / Input / Output

GetPolicySummary

Command API Reference / Input / Output

GetRegistry

Command API Reference / Input / Output

GetRegistryRecord

Command API Reference / Input / Output

GetResourcePolicy

Command API Reference / Input / Output

GetTokenVault

Command API Reference / Input / Output

GetWorkloadIdentity

Command API Reference / Input / Output

ListAgentRuntimeEndpoints

Command API Reference / Input / Output

ListAgentRuntimes

Command API Reference / Input / Output

ListAgentRuntimeVersions

Command API Reference / Input / Output

ListApiKeyCredentialProviders

Command API Reference / Input / Output

ListBrowserProfiles

Command API Reference / Input / Output

ListBrowsers

Command API Reference / Input / Output

ListCodeInterpreters

Command API Reference / Input / Output

ListConfigurationBundles

Command API Reference / Input / Output

ListConfigurationBundleVersions

Command API Reference / Input / Output

ListDatasetExamples

Command API Reference / Input / Output

ListDatasets

Command API Reference / Input / Output

ListDatasetVersions

Command API Reference / Input / Output

ListEvaluators

Command API Reference / Input / Output

ListGatewayRules

Command API Reference / Input / Output

ListGateways

Command API Reference / Input / Output

ListGatewayTargets

Command API Reference / Input / Output

ListHarnessEndpoints

Command API Reference / Input / Output

ListHarnesses

Command API Reference / Input / Output

ListHarnessVersions

Command API Reference / Input / Output

ListMemories

Command API Reference / Input / Output

ListOauth2CredentialProviders

Command API Reference / Input / Output

ListOnlineEvaluationConfigs

Command API Reference / Input / Output

ListPaymentConnectors

Command API Reference / Input / Output

ListPaymentCredentialProviders

Command API Reference / Input / Output

ListPaymentManagers

Command API Reference / Input / Output

ListPolicies

Command API Reference / Input / Output

ListPolicyEngines

Command API Reference / Input / Output

ListPolicyEngineSummaries

Command API Reference / Input / Output

ListPolicyGenerationAssets

Command API Reference / Input / Output

ListPolicyGenerations

Command API Reference / Input / Output

ListPolicyGenerationSummaries

Command API Reference / Input / Output

ListPolicySummaries

Command API Reference / Input / Output

ListRegistries

Command API Reference / Input / Output

ListRegistryRecords

Command API Reference / Input / Output

ListTagsForResource

Command API Reference / Input / Output

ListWorkloadIdentities

Command API Reference / Input / Output

PutResourcePolicy

Command API Reference / Input / Output

SetTokenVaultCMK

Command API Reference / Input / Output

StartPolicyGeneration

Command API Reference / Input / Output

SubmitRegistryRecordForApproval

Command API Reference / Input / Output

SynchronizeGatewayTargets

Command API Reference / Input / Output

TagResource

Command API Reference / Input / Output

UntagResource

Command API Reference / Input / Output

UpdateAgentRuntime

Command API Reference / Input / Output

UpdateAgentRuntimeEndpoint

Command API Reference / Input / Output

UpdateApiKeyCredentialProvider

Command API Reference / Input / Output

UpdateConfigurationBundle

Command API Reference / Input / Output

UpdateDataset

Command API Reference / Input / Output

UpdateDatasetExamples

Command API Reference / Input / Output

UpdateEvaluator

Command API Reference / Input / Output

UpdateGateway

Command API Reference / Input / Output

UpdateGatewayRule

Command API Reference / Input / Output

UpdateGatewayTarget

Command API Reference / Input / Output

UpdateHarness

Command API Reference / Input / Output

UpdateHarnessEndpoint

Command API Reference / Input / Output

UpdateMemory

Command API Reference / Input / Output

UpdateOauth2CredentialProvider

Command API Reference / Input / Output

UpdateOnlineEvaluationConfig

Command API Reference / Input / Output

UpdatePaymentConnector

Command API Reference / Input / Output

UpdatePaymentCredentialProvider

Command API Reference / Input / Output

UpdatePaymentManager

Command API Reference / Input / Output

UpdatePolicy

Command API Reference / Input / Output

UpdatePolicyEngine

Command API Reference / Input / Output

UpdateRegistry

Command API Reference / Input / Output

UpdateRegistryRecord

Command API Reference / Input / Output

UpdateRegistryRecordStatus

Command API Reference / Input / Output

UpdateWorkloadIdentity

Command API Reference / Input / Output