typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
32 lines (31 loc) • 1.42 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Instance_Type = 'AWS::ServiceDiscovery::Instance';
export declare const Instance_Type = "AWS::ServiceDiscovery::Instance";
/**
* Resource Type definition for AWS::ServiceDiscovery::Instance {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html}
*/
export default function Instance(props: Instance_Properties): CfnResource<Instance_Properties>;
/**
* Resource Type definition for AWS::ServiceDiscovery::Instance {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html}
*/
export declare type Instance_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes}
*/
InstanceAttributes: {
[k: string]: unknown;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid}
*/
InstanceId?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid}
*/
ServiceId: Resolvable<string>;
};