typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
19 lines (18 loc) • 966 B
JavaScript
;
// CloudFormation Resource AWS::NetworkManager::TransitGatewayRegistration
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransitGatewayRegistration_Type = void 0;
const base_1 = require("../../base");
exports.TransitGatewayRegistration_Type = 'AWS::NetworkManager::TransitGatewayRegistration';
/**
* The AWS::NetworkManager::TransitGatewayRegistration type registers a
* transit gateway in your global network. The transit gateway can be in
* any AWS Region, but it must be owned by the same AWS account that owns
* the global network. You cannot register a transit gateway in more than
* one global network. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-transitgatewayregistration.html}
*/
function TransitGatewayRegistration(props) {
return new base_1.CfnResource(exports.TransitGatewayRegistration_Type, props);
}
exports.default = TransitGatewayRegistration;