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

Gets information about a distribution tenant.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, GetDistributionTenantCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, GetDistributionTenantCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * const client = new CloudFrontClient(config); * const input = { // GetDistributionTenantRequest * Identifier: "STRING_VALUE", // required * }; * const command = new GetDistributionTenantCommand(input); * const response = await client.send(command); * // { // GetDistributionTenantResult * // DistributionTenant: { // DistributionTenant * // Id: "STRING_VALUE", * // DistributionId: "STRING_VALUE", * // Name: "STRING_VALUE", * // Arn: "STRING_VALUE", * // Domains: [ // DomainResultList * // { // DomainResult * // Domain: "STRING_VALUE", // required * // Status: "active" || "inactive", * // }, * // ], * // Tags: { // Tags * // Items: [ // TagList * // { // Tag * // Key: "STRING_VALUE", // required * // Value: "STRING_VALUE", * // }, * // ], * // }, * // Customizations: { // Customizations * // WebAcl: { // WebAclCustomization * // Action: "override" || "disable", // required * // Arn: "STRING_VALUE", * // }, * // Certificate: { // Certificate * // Arn: "STRING_VALUE", // required * // }, * // GeoRestrictions: { // GeoRestrictionCustomization * // RestrictionType: "blacklist" || "whitelist" || "none", // required * // Locations: [ // LocationList * // "STRING_VALUE", * // ], * // }, * // }, * // Parameters: [ // Parameters * // { // Parameter * // Name: "STRING_VALUE", // required * // Value: "STRING_VALUE", // required * // }, * // ], * // ConnectionGroupId: "STRING_VALUE", * // CreatedTime: new Date("TIMESTAMP"), * // LastModifiedTime: new Date("TIMESTAMP"), * // Enabled: true || false, * // Status: "STRING_VALUE", * // }, * // ETag: "STRING_VALUE", * // }; * * ``` * * @param GetDistributionTenantCommandInput - {@link GetDistributionTenantCommandInput} * @returns {@link GetDistributionTenantCommandOutput} * @see {@link GetDistributionTenantCommandInput} for command's `input` shape. * @see {@link GetDistributionTenantCommandOutput} for command's `response` shape. * @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape. * * @throws {@link AccessDenied} (client fault) *

Access denied.

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

The entity was not found.

* * @throws {@link CloudFrontServiceException} *

Base exception class for all service exceptions from CloudFront service.

* * * @public */ export declare class GetDistributionTenantCommand extends GetDistributionTenantCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDistributionTenantRequest; output: GetDistributionTenantResult; }; sdk: { input: GetDistributionTenantCommandInput; output: GetDistributionTenantCommandOutput; }; }; }