import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeFHIRDatastoreRequest, DescribeFHIRDatastoreResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeFHIRDatastoreCommand}. */ export interface DescribeFHIRDatastoreCommandInput extends DescribeFHIRDatastoreRequest { } /** * @public * * The output of {@link DescribeFHIRDatastoreCommand}. */ export interface DescribeFHIRDatastoreCommandOutput extends DescribeFHIRDatastoreResponse, __MetadataBearer { } declare const DescribeFHIRDatastoreCommand_base: { new (input: DescribeFHIRDatastoreCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeFHIRDatastoreCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Get properties for a FHIR-enabled data store.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { HealthLakeClient, DescribeFHIRDatastoreCommand } from "@aws-sdk/client-healthlake"; // ES Modules import * // const { HealthLakeClient, DescribeFHIRDatastoreCommand } = require("@aws-sdk/client-healthlake"); // CommonJS import * // import type { HealthLakeClientConfig } from "@aws-sdk/client-healthlake"; * const config = {}; // type is HealthLakeClientConfig * const client = new HealthLakeClient(config); * const input = { // DescribeFHIRDatastoreRequest * DatastoreId: "STRING_VALUE", // required * }; * const command = new DescribeFHIRDatastoreCommand(input); * const response = await client.send(command); * // { // DescribeFHIRDatastoreResponse * // DatastoreProperties: { // DatastoreProperties * // DatastoreId: "STRING_VALUE", // required * // DatastoreArn: "STRING_VALUE", // required * // DatastoreName: "STRING_VALUE", * // DatastoreStatus: "CREATING" || "ACTIVE" || "DELETING" || "DELETED" || "CREATE_FAILED" || "UPDATING" || "UPDATE_FAILED", // required * // CreatedAt: new Date("TIMESTAMP"), * // DatastoreTypeVersion: "R4", // required * // DatastoreEndpoint: "STRING_VALUE", // required * // SseConfiguration: { // SseConfiguration * // KmsEncryptionConfig: { // KmsEncryptionConfig * // CmkType: "CUSTOMER_MANAGED_KMS_KEY" || "AWS_OWNED_KMS_KEY", // required * // KmsKeyId: "STRING_VALUE", * // }, * // }, * // PreloadDataConfig: { // PreloadDataConfig * // PreloadDataType: "SYNTHEA", // required * // }, * // IdentityProviderConfiguration: { // IdentityProviderConfiguration * // AuthorizationStrategy: "SMART_ON_FHIR_V1" || "SMART_ON_FHIR" || "AWS_AUTH", // required * // FineGrainedAuthorizationEnabled: true || false, * // Metadata: "STRING_VALUE", * // IdpLambdaArn: "STRING_VALUE", * // }, * // ErrorCause: { // ErrorCause * // ErrorMessage: "STRING_VALUE", * // ErrorCategory: "RETRYABLE_ERROR" || "NON_RETRYABLE_ERROR", * // }, * // NlpConfiguration: { // NlpConfiguration * // Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING", * // }, * // AnalyticsConfiguration: { // AnalyticsConfiguration * // Status: "ENABLED" || "ENABLING" || "DISABLED" || "DISABLING" || "PAUSING" || "PAUSED", * // }, * // ProfileConfiguration: { // ProfileConfiguration * // DefaultProfiles: [ // DefaultProfiles * // "STRING_VALUE", * // ], * // }, * // }, * // }; * * ``` * * @param DescribeFHIRDatastoreCommandInput - {@link DescribeFHIRDatastoreCommandInput} * @returns {@link DescribeFHIRDatastoreCommandOutput} * @see {@link DescribeFHIRDatastoreCommandInput} for command's `input` shape. * @see {@link DescribeFHIRDatastoreCommandOutput} for command's `response` shape. * @see {@link HealthLakeClientResolvedConfig | config} for HealthLakeClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An unknown internal error occurred in the service.

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

The requested data store was not found.

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

The user has exceeded their maximum number of allowed calls to the given API.

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

The user input parameter was invalid.

* * @throws {@link HealthLakeServiceException} *

Base exception class for all service exceptions from HealthLake service.

* * * @public */ export declare class DescribeFHIRDatastoreCommand extends DescribeFHIRDatastoreCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeFHIRDatastoreRequest; output: DescribeFHIRDatastoreResponse; }; sdk: { input: DescribeFHIRDatastoreCommandInput; output: DescribeFHIRDatastoreCommandOutput; }; }; }