typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
40 lines (39 loc) • 1.89 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ReplicationSubnetGroup_Type = 'AWS::DMS::ReplicationSubnetGroup';
export declare const ReplicationSubnetGroup_Type = "AWS::DMS::ReplicationSubnetGroup";
/**
* Resource Type definition for AWS::DMS::ReplicationSubnetGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html}
*/
export default function ReplicationSubnetGroup(props: ReplicationSubnetGroup_Properties): CfnResource<ReplicationSubnetGroup_Properties>;
/**
* Resource Type definition for AWS::DMS::ReplicationSubnetGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html}
*/
export declare type ReplicationSubnetGroup_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription}
*/
ReplicationSubnetGroupDescription: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier}
*/
ReplicationSubnetGroupIdentifier?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-subnetids}
*/
SubnetIds: Resolvable<string>[];
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-tags}
*/
Tags?: Tag[];
};
export declare type Tag = {
Key: Resolvable<string>;
Value: Resolvable<string>;
};