agent-claw: automated task changes
This commit is contained in:
31
cdk/node_modules/aws-cdk-lib/aws-servicediscovery/lib/non-ip-instance.d.ts
generated
vendored
Normal file
31
cdk/node_modules/aws-cdk-lib/aws-servicediscovery/lib/non-ip-instance.d.ts
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user