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

Gets information about a connection group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudFrontClient, GetConnectionGroupCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import * // const { CloudFrontClient, GetConnectionGroupCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import * const client = new CloudFrontClient(config); * const input = { // GetConnectionGroupRequest * Identifier: "STRING_VALUE", // required * }; * const command = new GetConnectionGroupCommand(input); * const response = await client.send(command); * // { // GetConnectionGroupResult * // ConnectionGroup: { // ConnectionGroup * // Id: "STRING_VALUE", * // Name: "STRING_VALUE", * // Arn: "STRING_VALUE", * // CreatedTime: new Date("TIMESTAMP"), * // LastModifiedTime: new Date("TIMESTAMP"), * // Tags: { // Tags * // Items: [ // TagList * // { // Tag * // Key: "STRING_VALUE", // required * // Value: "STRING_VALUE", * // }, * // ], * // }, * // Ipv6Enabled: true || false, * // RoutingEndpoint: "STRING_VALUE", * // AnycastIpListId: "STRING_VALUE", * // Status: "STRING_VALUE", * // Enabled: true || false, * // IsDefault: true || false, * // }, * // ETag: "STRING_VALUE", * // }; * * ``` * * @param GetConnectionGroupCommandInput - {@link GetConnectionGroupCommandInput} * @returns {@link GetConnectionGroupCommandOutput} * @see {@link GetConnectionGroupCommandInput} for command's `input` shape. * @see {@link GetConnectionGroupCommandOutput} 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 GetConnectionGroupCommand extends GetConnectionGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetConnectionGroupRequest; output: GetConnectionGroupResult; }; sdk: { input: GetConnectionGroupCommandInput; output: GetConnectionGroupCommandOutput; }; }; }