typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
17 lines (16 loc) • 722 B
JavaScript
;
// CloudFormation Resource AWS::NetworkManager::LinkAssociation
Object.defineProperty(exports, "__esModule", { value: true });
exports.LinkAssociation_Type = void 0;
const base_1 = require("../../base");
exports.LinkAssociation_Type = 'AWS::NetworkManager::LinkAssociation';
/**
* The AWS::NetworkManager::LinkAssociation type associates a link to a
* device. The device and link must be in the same global network and the
* same site. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html}
*/
function LinkAssociation(props) {
return new base_1.CfnResource(exports.LinkAssociation_Type, props);
}
exports.default = LinkAssociation;