aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
23 lines (22 loc) • 559 B
TypeScript
export declare const ENDPOINT_SERVICE_AVAILABILITY_ZONE_PROVIDER = "endpoint-service-availability-zones";
/**
* Query to hosted zone context provider
*/
export interface EndpointServiceAvailabilityZonesContextQuery {
/**
* Query account
*/
readonly account?: string;
/**
* Query region
*/
readonly region?: string;
/**
* Query service name
*/
readonly serviceName?: string;
}
/**
* Response of the AZ provider looks like this
*/
export type EndpointServiceAvailabilityZonesContextResponse = string[];