import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetIntermediateTableAnalysisRuleInput, GetIntermediateTableAnalysisRuleOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetIntermediateTableAnalysisRuleCommand}. */ export interface GetIntermediateTableAnalysisRuleCommandInput extends GetIntermediateTableAnalysisRuleInput { } /** * @public * * The output of {@link GetIntermediateTableAnalysisRuleCommand}. */ export interface GetIntermediateTableAnalysisRuleCommandOutput extends GetIntermediateTableAnalysisRuleOutput, __MetadataBearer { } declare const GetIntermediateTableAnalysisRuleCommand_base: { new (input: GetIntermediateTableAnalysisRuleCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetIntermediateTableAnalysisRuleCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves the analysis rule for an intermediate table.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CleanRoomsClient, GetIntermediateTableAnalysisRuleCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import * // const { CleanRoomsClient, GetIntermediateTableAnalysisRuleCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import * // import type { CleanRoomsClientConfig } from "@aws-sdk/client-cleanrooms"; * const config = {}; // type is CleanRoomsClientConfig * const client = new CleanRoomsClient(config); * const input = { // GetIntermediateTableAnalysisRuleInput * membershipIdentifier: "STRING_VALUE", // required * intermediateTableIdentifier: "STRING_VALUE", // required * analysisRuleType: "CUSTOM", // required * }; * const command = new GetIntermediateTableAnalysisRuleCommand(input); * const response = await client.send(command); * // { // GetIntermediateTableAnalysisRuleOutput * // analysisRule: { // IntermediateTableAnalysisRule * // intermediateTableIdentifier: "STRING_VALUE", // required * // intermediateTableArn: "STRING_VALUE", // required * // analysisRulePolicy: { // IntermediateTableAnalysisRulePolicy Union: only one key present * // v1: { // IntermediateTableAnalysisRulePolicyV1 Union: only one key present * // custom: { // IntermediateTableAnalysisRuleCustom * // allowedAnalyses: [ // AllowedAnalysesList * // "STRING_VALUE", * // ], * // additionalAnalyses: "ALLOWED" || "REQUIRED" || "NOT_ALLOWED", * // allowedAdditionalAnalyses: [ // AllowedAdditionalAnalyses * // "STRING_VALUE", * // ], * // allowedAnalysisProviders: [ // AllowedAnalysisProviderList * // "STRING_VALUE", * // ], * // allowedResultReceivers: [ // AllowedResultReceivers * // "STRING_VALUE", * // ], * // differentialPrivacy: { // DifferentialPrivacyConfiguration * // columns: [ // DifferentialPrivacyColumnList // required * // { // DifferentialPrivacyColumn * // name: "STRING_VALUE", // required * // }, * // ], * // }, * // disallowedOutputColumns: [ // AnalysisRuleColumnList * // "STRING_VALUE", * // ], * // aggregationThresholds: [ // AggregationThresholdList * // { // AggregationThreshold * // identityColumns: [ // required * // "STRING_VALUE", * // ], * // minimumIdentityCount: Number("int"), // required * // type: "COUNT_DISTINCT", // required * // outputColumnThresholds: [ // OutputColumnThresholdList * // { // OutputColumnThreshold * // outputColumnName: "STRING_VALUE", // required * // minimumIdentityCount: Number("int"), // required * // }, * // ], * // allowedAggregateExpressionType: "COLUMNS_ONLY" || "ANY_EXPRESSION", // required * // }, * // ], * // comparisonControls: { // ComparisonControls * // allowedLiteralComparisonColumns: "", // required * // allowedColumnComparisonColumns: "", // required * // }, * // }, * // }, * // }, * // analysisRuleType: "CUSTOM", // required * // createTime: new Date("TIMESTAMP"), // required * // updateTime: new Date("TIMESTAMP"), // required * // }, * // }; * * ``` * * @param GetIntermediateTableAnalysisRuleCommandInput - {@link GetIntermediateTableAnalysisRuleCommandInput} * @returns {@link GetIntermediateTableAnalysisRuleCommandOutput} * @see {@link GetIntermediateTableAnalysisRuleCommandInput} for command's `input` shape. * @see {@link GetIntermediateTableAnalysisRuleCommandOutput} for command's `response` shape. * @see {@link CleanRoomsClientResolvedConfig | config} for CleanRoomsClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Caller does not have sufficient access to perform this action.

* * @throws {@link InternalServerException} (server fault) *

Unexpected error during processing of request.

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

Request references a resource which does not exist.

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

Request was denied due to request throttling.

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

The input fails to satisfy the specified constraints.

* * @throws {@link CleanRoomsServiceException} *

Base exception class for all service exceptions from CleanRooms service.

* * * @public */ export declare class GetIntermediateTableAnalysisRuleCommand extends GetIntermediateTableAnalysisRuleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetIntermediateTableAnalysisRuleInput; output: GetIntermediateTableAnalysisRuleOutput; }; sdk: { input: GetIntermediateTableAnalysisRuleCommandInput; output: GetIntermediateTableAnalysisRuleCommandOutput; }; }; }