Files
2026-05-06 18:55:16 -05:00

32 lines
1.0 KiB
TypeScript

import type { Construct } from 'constructs';
import type { BaseInstanceProps } from './instance';
import { InstanceBase } from './instance';
import type { IService } from './service';
export interface NonIpInstanceBaseProps extends BaseInstanceProps {
}
export interface NonIpInstanceProps extends NonIpInstanceBaseProps {
/**
* The Cloudmap service this resource is registered to.
*/
readonly service: IService;
}
/**
* Instance accessible using values other than an IP address or a domain name (CNAME).
* Specify the other values in Custom attributes.
*
* @resource AWS::ServiceDiscovery::Instance
*/
export declare class NonIpInstance extends InstanceBase {
/** Uniquely identifies this class. */
static readonly PROPERTY_INJECTION_ID: string;
/**
* The Id of the instance
*/
readonly instanceId: string;
/**
* The Cloudmap service to which the instance is registered.
*/
readonly service: IService;
constructor(scope: Construct, id: string, props: NonIpInstanceProps);
}