import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EvidentlyClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EvidentlyClient"; import type { TestSegmentPatternRequest, TestSegmentPatternResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link TestSegmentPatternCommand}. */ export interface TestSegmentPatternCommandInput extends TestSegmentPatternRequest { } /** * @public * * The output of {@link TestSegmentPatternCommand}. */ export interface TestSegmentPatternCommandOutput extends TestSegmentPatternResponse, __MetadataBearer { } declare const TestSegmentPatternCommand_base: { new (input: TestSegmentPatternCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: TestSegmentPatternCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Use this operation to test a rules pattern that you plan to use to create an audience segment. For more information about segments, see CreateSegment.

* * @deprecated AWS CloudWatch Evidently has been deprecated since 11/17/2025. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EvidentlyClient, TestSegmentPatternCommand } from "@aws-sdk/client-evidently"; // ES Modules import * // const { EvidentlyClient, TestSegmentPatternCommand } = require("@aws-sdk/client-evidently"); // CommonJS import * // import type { EvidentlyClientConfig } from "@aws-sdk/client-evidently"; * const config = {}; // type is EvidentlyClientConfig * const client = new EvidentlyClient(config); * const input = { // TestSegmentPatternRequest * pattern: "STRING_VALUE", // required * payload: "STRING_VALUE", // required * }; * const command = new TestSegmentPatternCommand(input); * const response = await client.send(command); * // { // TestSegmentPatternResponse * // match: true || false, // required * // }; * * ``` * * @param TestSegmentPatternCommandInput - {@link TestSegmentPatternCommandInput} * @returns {@link TestSegmentPatternCommandOutput} * @see {@link TestSegmentPatternCommandInput} for command's `input` shape. * @see {@link TestSegmentPatternCommandOutput} for command's `response` shape. * @see {@link EvidentlyClientResolvedConfig | config} for EvidentlyClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient permissions to perform this action.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied because of request throttling. Retry the request.

* * @throws {@link ValidationException} (client fault) *

The value of a parameter in the request caused an error.

* * @throws {@link EvidentlyServiceException} *

Base exception class for all service exceptions from Evidently service.

* * * @public */ export declare class TestSegmentPatternCommand extends TestSegmentPatternCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: TestSegmentPatternRequest; output: TestSegmentPatternResponse; }; sdk: { input: TestSegmentPatternCommandInput; output: TestSegmentPatternCommandOutput; }; }; }