SearchPromptsCommand

Searches prompts in an Amazon Connect instance, with optional filtering.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { ConnectClient, SearchPromptsCommand } from "@aws-sdk/client-connect"; // ES Modules import
// const { ConnectClient, SearchPromptsCommand } = require("@aws-sdk/client-connect"); // CommonJS import
const client = new ConnectClient(config);
const input = { // SearchPromptsRequest
  InstanceId: "STRING_VALUE", // required
  NextToken: "STRING_VALUE",
  MaxResults: Number("int"),
  SearchFilter: { // PromptSearchFilter
    TagFilter: { // ControlPlaneTagFilter
      OrConditions: [ // TagOrConditionList
        [ // TagAndConditionList
          { // TagCondition
            TagKey: "STRING_VALUE",
            TagValue: "STRING_VALUE",
          },
        ],
      ],
      AndConditions: [
        {
          TagKey: "STRING_VALUE",
          TagValue: "STRING_VALUE",
        },
      ],
      TagCondition: "<TagCondition>",
    },
  },
  SearchCriteria: { // PromptSearchCriteria
    OrConditions: [ // PromptSearchConditionList
      {
        OrConditions: [
          "<PromptSearchCriteria>",
        ],
        AndConditions: [
          "<PromptSearchCriteria>",
        ],
        StringCondition: { // StringCondition
          FieldName: "STRING_VALUE",
          Value: "STRING_VALUE",
          ComparisonType: "STARTS_WITH" || "CONTAINS" || "EXACT",
        },
      },
    ],
    AndConditions: [
      "<PromptSearchCriteria>",
    ],
    StringCondition: {
      FieldName: "STRING_VALUE",
      Value: "STRING_VALUE",
      ComparisonType: "STARTS_WITH" || "CONTAINS" || "EXACT",
    },
  },
};
const command = new SearchPromptsCommand(input);
const response = await client.send(command);
// { // SearchPromptsResponse
//   Prompts: [ // PromptList
//     { // Prompt
//       PromptARN: "STRING_VALUE",
//       PromptId: "STRING_VALUE",
//       Name: "STRING_VALUE",
//       Description: "STRING_VALUE",
//       Tags: { // TagMap
//         "<keys>": "STRING_VALUE",
//       },
//       LastModifiedTime: new Date("TIMESTAMP"),
//       LastModifiedRegion: "STRING_VALUE",
//     },
//   ],
//   NextToken: "STRING_VALUE",
//   ApproximateTotalCount: Number("long"),
// };

SearchPromptsCommand Input

See SearchPromptsCommandInput for more details

Parameter
Type
Description
InstanceId
Required
string | undefined

The identifier of the Amazon Connect instance. You can find the instance ID  in the Amazon Resource Name (ARN) of the instance.

MaxResults
number | undefined

The maximum number of results to return per page.

NextToken
string | undefined

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

SearchCriteria
PromptSearchCriteria | undefined

The search criteria to be used to return prompts.

SearchFilter
PromptSearchFilter | undefined

Filters to be applied to search results.

SearchPromptsCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.
ApproximateTotalCount
number | undefined

The total number of quick connects which matched your search query.

NextToken
string | undefined

If there are additional results, this is the token for the next set of results.

Prompts
Prompt[] | undefined

Information about the prompts.

Throws

Name
Fault
Details
InternalServiceException
server

Request processing failed because of an error or failure with the service.

InvalidParameterException
client

One or more of the specified parameters are not valid.

InvalidRequestException
client

The request is not valid.

ResourceNotFoundException
client

The specified resource was not found.

ThrottlingException
client

The throttling limit has been exceeded.

ConnectServiceException
Base exception class for all service exceptions from Connect service.