agent-claw: automated task changes
This commit is contained in:
37
cdk/node_modules/aws-cdk-lib/aws-apigatewayv2/lib/common/api.d.ts
generated
vendored
Normal file
37
cdk/node_modules/aws-cdk-lib/aws-apigatewayv2/lib/common/api.d.ts
generated
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
import type * as cloudwatch from '../../../aws-cloudwatch';
|
||||
import type { IResource } from '../../../core';
|
||||
import type { IApiRef } from '../apigatewayv2.generated';
|
||||
/**
|
||||
* Represents a API Gateway HTTP/WebSocket API
|
||||
*/
|
||||
export interface IApi extends IResource, IApiRef {
|
||||
/**
|
||||
* The identifier of this API Gateway API.
|
||||
* @attribute
|
||||
*/
|
||||
readonly apiId: string;
|
||||
/**
|
||||
* The default endpoint for an API
|
||||
* @attribute
|
||||
*/
|
||||
readonly apiEndpoint: string;
|
||||
/**
|
||||
* Return the given named metric for this Api Gateway
|
||||
*
|
||||
* @default - average over 5 minutes
|
||||
*/
|
||||
metric(metricName: string, props?: cloudwatch.MetricOptions): cloudwatch.Metric;
|
||||
}
|
||||
/**
|
||||
* Supported IP Address Types
|
||||
*/
|
||||
export declare enum IpAddressType {
|
||||
/**
|
||||
* IPv4 address type
|
||||
*/
|
||||
IPV4 = "ipv4",
|
||||
/**
|
||||
* IPv4 and IPv6 address type
|
||||
*/
|
||||
DUAL_STACK = "dualstack"
|
||||
}
|
||||
Reference in New Issue
Block a user