agent-claw: automated task changes
This commit is contained in:
57
cdk/node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts
generated
vendored
Normal file
57
cdk/node_modules/aws-cdk-lib/aws-servicediscovery/lib/namespace.d.ts
generated
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
import type { IResource } from '../../core';
|
||||
/**
|
||||
* A type of namespace
|
||||
*
|
||||
* One of private, public or HTTP namespace.
|
||||
*
|
||||
* [awslint:interface-extends-ref]
|
||||
*/
|
||||
export interface INamespace extends IResource {
|
||||
/**
|
||||
* A name for the Namespace.
|
||||
* @attribute
|
||||
*/
|
||||
readonly namespaceName: string;
|
||||
/**
|
||||
* Namespace Id for the Namespace.
|
||||
* @attribute
|
||||
*/
|
||||
readonly namespaceId: string;
|
||||
/**
|
||||
* Namespace ARN for the Namespace.
|
||||
* @attribute
|
||||
*/
|
||||
readonly namespaceArn: string;
|
||||
/**
|
||||
* Type of Namespace
|
||||
*/
|
||||
readonly type: NamespaceType;
|
||||
}
|
||||
export interface BaseNamespaceProps {
|
||||
/**
|
||||
* A name for the Namespace.
|
||||
*/
|
||||
readonly name: string;
|
||||
/**
|
||||
* A description of the Namespace.
|
||||
*
|
||||
* @default none
|
||||
*/
|
||||
readonly description?: string;
|
||||
}
|
||||
export declare enum NamespaceType {
|
||||
/**
|
||||
* Choose this option if you want your application to use only API calls to discover registered instances.
|
||||
*/
|
||||
HTTP = "HTTP",
|
||||
/**
|
||||
* Choose this option if you want your application to be able to discover instances using either API calls or using
|
||||
* DNS queries in a VPC.
|
||||
*/
|
||||
DNS_PRIVATE = "DNS_PRIVATE",
|
||||
/**
|
||||
* Choose this option if you want your application to be able to discover instances using either API calls or using
|
||||
* public DNS queries. You aren't required to use both methods.
|
||||
*/
|
||||
DNS_PUBLIC = "DNS_PUBLIC"
|
||||
}
|
||||
Reference in New Issue
Block a user