typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
34 lines (33 loc) • 1.66 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type LinkAssociation_Type = 'AWS::NetworkManager::LinkAssociation';
export declare const 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}
*/
export default function LinkAssociation(props: LinkAssociation_Properties): CfnResource<LinkAssociation_Properties>;
/**
* 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}
*/
export declare type LinkAssociation_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-globalnetworkid}
*/
GlobalNetworkId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-deviceid}
*/
DeviceId: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-linkassociation.html#cfn-networkmanager-linkassociation-linkid}
*/
LinkId: Resolvable<string>;
};