import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateTransitGatewayPeeringRequest, CreateTransitGatewayPeeringResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateTransitGatewayPeeringCommand}. */ export interface CreateTransitGatewayPeeringCommandInput extends CreateTransitGatewayPeeringRequest { } /** * @public * * The output of {@link CreateTransitGatewayPeeringCommand}. */ export interface CreateTransitGatewayPeeringCommandOutput extends CreateTransitGatewayPeeringResponse, __MetadataBearer { } declare const CreateTransitGatewayPeeringCommand_base: { new (input: CreateTransitGatewayPeeringCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateTransitGatewayPeeringCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Creates a transit gateway peering connection.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { NetworkManagerClient, CreateTransitGatewayPeeringCommand } from "@aws-sdk/client-networkmanager"; // ES Modules import * // const { NetworkManagerClient, CreateTransitGatewayPeeringCommand } = require("@aws-sdk/client-networkmanager"); // CommonJS import * // import type { NetworkManagerClientConfig } from "@aws-sdk/client-networkmanager"; * const config = {}; // type is NetworkManagerClientConfig * const client = new NetworkManagerClient(config); * const input = { // CreateTransitGatewayPeeringRequest * CoreNetworkId: "STRING_VALUE", // required * TransitGatewayArn: "STRING_VALUE", // required * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", * Value: "STRING_VALUE", * }, * ], * ClientToken: "STRING_VALUE", * }; * const command = new CreateTransitGatewayPeeringCommand(input); * const response = await client.send(command); * // { // CreateTransitGatewayPeeringResponse * // TransitGatewayPeering: { // TransitGatewayPeering * // Peering: { // Peering * // CoreNetworkId: "STRING_VALUE", * // CoreNetworkArn: "STRING_VALUE", * // PeeringId: "STRING_VALUE", * // OwnerAccountId: "STRING_VALUE", * // PeeringType: "TRANSIT_GATEWAY", * // State: "CREATING" || "FAILED" || "AVAILABLE" || "DELETING", * // EdgeLocation: "STRING_VALUE", * // ResourceArn: "STRING_VALUE", * // Tags: [ // TagList * // { // Tag * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // CreatedAt: new Date("TIMESTAMP"), * // LastModificationErrors: [ // PeeringErrorList * // { // PeeringError * // Code: "TRANSIT_GATEWAY_NOT_FOUND" || "TRANSIT_GATEWAY_PEERS_LIMIT_EXCEEDED" || "MISSING_PERMISSIONS" || "INTERNAL_ERROR" || "EDGE_LOCATION_PEER_DUPLICATE" || "INVALID_TRANSIT_GATEWAY_STATE", * // Message: "STRING_VALUE", * // ResourceArn: "STRING_VALUE", * // RequestId: "STRING_VALUE", * // MissingPermissionsContext: { // PermissionsErrorContext * // MissingPermission: "STRING_VALUE", * // }, * // }, * // ], * // }, * // TransitGatewayArn: "STRING_VALUE", * // TransitGatewayPeeringAttachmentId: "STRING_VALUE", * // }, * // }; * * ``` * * @param CreateTransitGatewayPeeringCommandInput - {@link CreateTransitGatewayPeeringCommandInput} * @returns {@link CreateTransitGatewayPeeringCommandOutput} * @see {@link CreateTransitGatewayPeeringCommandInput} for command's `input` shape. * @see {@link CreateTransitGatewayPeeringCommandOutput} for command's `response` shape. * @see {@link NetworkManagerClientResolvedConfig | config} for NetworkManagerClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

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

There was a conflict processing the request. Updating or deleting the resource can * cause an inconsistent state.

* * @throws {@link InternalServerException} (server fault) *

The request has failed due to an internal error.

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

The specified resource could not be found.

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

The request was denied due to request throttling.

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

The input fails to satisfy the constraints.

* * @throws {@link NetworkManagerServiceException} *

Base exception class for all service exceptions from NetworkManager service.

* * * @public */ export declare class CreateTransitGatewayPeeringCommand extends CreateTransitGatewayPeeringCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateTransitGatewayPeeringRequest; output: CreateTransitGatewayPeeringResponse; }; sdk: { input: CreateTransitGatewayPeeringCommandInput; output: CreateTransitGatewayPeeringCommandOutput; }; }; }