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

Get the field-level encryption profile information.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, GetFieldLevelEncryptionProfileCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, GetFieldLevelEncryptionProfileCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * const client = new CloudFrontClient(config); * const input = { // GetFieldLevelEncryptionProfileRequest * Id: "STRING_VALUE", // required * }; * const command = new GetFieldLevelEncryptionProfileCommand(input); * const response = await client.send(command); * // { // GetFieldLevelEncryptionProfileResult * // FieldLevelEncryptionProfile: { // FieldLevelEncryptionProfile * // Id: "STRING_VALUE", // required * // LastModifiedTime: new Date("TIMESTAMP"), // required * // 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 GetFieldLevelEncryptionProfileCommandInput - {@link GetFieldLevelEncryptionProfileCommandInput} * @returns {@link GetFieldLevelEncryptionProfileCommandOutput} * @see {@link GetFieldLevelEncryptionProfileCommandInput} for command's `input` shape. * @see {@link GetFieldLevelEncryptionProfileCommandOutput} 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 GetFieldLevelEncryptionProfileCommand extends GetFieldLevelEncryptionProfileCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetFieldLevelEncryptionProfileRequest; output: GetFieldLevelEncryptionProfileResult; }; sdk: { input: GetFieldLevelEncryptionProfileCommandInput; output: GetFieldLevelEncryptionProfileCommandOutput; }; }; }