import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient"; import { GetFieldLevelEncryptionProfileConfigRequest, GetFieldLevelEncryptionProfileConfigResult } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetFieldLevelEncryptionProfileConfigCommand}. */ export interface GetFieldLevelEncryptionProfileConfigCommandInput extends GetFieldLevelEncryptionProfileConfigRequest { } /** * @public * * The output of {@link GetFieldLevelEncryptionProfileConfigCommand}. */ export interface GetFieldLevelEncryptionProfileConfigCommandOutput extends GetFieldLevelEncryptionProfileConfigResult, __MetadataBearer { } declare const GetFieldLevelEncryptionProfileConfigCommand_base: { new (input: GetFieldLevelEncryptionProfileConfigCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: GetFieldLevelEncryptionProfileConfigCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Get the field-level encryption profile configuration information.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, GetFieldLevelEncryptionProfileConfigCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, GetFieldLevelEncryptionProfileConfigCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * const client = new CloudFrontClient(config); * const input = { // GetFieldLevelEncryptionProfileConfigRequest * Id: "STRING_VALUE", // required * }; * const command = new GetFieldLevelEncryptionProfileConfigCommand(input); * const response = await client.send(command); * // { // GetFieldLevelEncryptionProfileConfigResult * // FieldLevelEncryptionProfileConfig: { // FieldLevelEncryptionProfileConfig * // Name: "STRING_VALUE", // required * // CallerReference: "STRING_VALUE", // required * // Comment: "STRING_VALUE", * // EncryptionEntities: { // EncryptionEntities * // Quantity: Number("int"), // required * // Items: [ // EncryptionEntityList * // { // EncryptionEntity * // PublicKeyId: "STRING_VALUE", // required * // ProviderId: "STRING_VALUE", // required * // FieldPatterns: { // FieldPatterns * // Quantity: Number("int"), // required * // Items: [ // FieldPatternList * // "STRING_VALUE", * // ], * // }, * // }, * // ], * // }, * // }, * // ETag: "STRING_VALUE", * // }; * * ``` * * @param GetFieldLevelEncryptionProfileConfigCommandInput - {@link GetFieldLevelEncryptionProfileConfigCommandInput} * @returns {@link GetFieldLevelEncryptionProfileConfigCommandOutput} * @see {@link GetFieldLevelEncryptionProfileConfigCommandInput} for command's `input` shape. * @see {@link GetFieldLevelEncryptionProfileConfigCommandOutput} for command's `response` shape. * @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape. * * @throws {@link AccessDenied} (client fault) *

Access denied.

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

The specified profile for field-level encryption doesn't exist.

* * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* * * @public */ export declare class GetFieldLevelEncryptionProfileConfigCommand extends GetFieldLevelEncryptionProfileConfigCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetFieldLevelEncryptionProfileConfigRequest; output: GetFieldLevelEncryptionProfileConfigResult; }; sdk: { input: GetFieldLevelEncryptionProfileConfigCommandInput; output: GetFieldLevelEncryptionProfileConfigCommandOutput; }; }; }