@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
59 lines (58 loc) • 2.29 kB
TypeScript
import * as alb from "./alb";
import * as applicationloadbalancing from "./applicationloadbalancing";
import * as autoscaling from "./autoscaling";
import * as ec2 from "./ec2";
import * as ecr from "./ecr";
import * as iam from "./iam";
import * as lambda from "./lambda";
import * as rds from "./rds";
import * as route53 from "./route53";
import * as s3 from "./s3";
import * as ssm from "./ssm";
export { alb, applicationloadbalancing, autoscaling, ec2, ecr, iam, lambda, rds, route53, s3, ssm, };
export declare const Region: {
readonly AFSouth1: "af-south-1";
readonly APEast1: "ap-east-1";
readonly APNortheast1: "ap-northeast-1";
readonly APNortheast2: "ap-northeast-2";
readonly APNortheast3: "ap-northeast-3";
readonly APSouth1: "ap-south-1";
readonly APSouth2: "ap-south-2";
readonly APSoutheast1: "ap-southeast-1";
readonly APSoutheast2: "ap-southeast-2";
readonly APSoutheast3: "ap-southeast-3";
readonly APSoutheast4: "ap-southeast-4";
readonly APSoutheast5: "ap-southeast-5";
readonly APSoutheast7: "ap-southeast-7";
readonly CACentral: "ca-central-1";
readonly CAWest1: "ca-west-1";
readonly EUCentral1: "eu-central-1";
readonly EUCentral2: "eu-central-2";
readonly EUNorth1: "eu-north-1";
readonly EUSouth1: "eu-south-1";
readonly EUSouth2: "eu-south-2";
readonly EUWest1: "eu-west-1";
readonly EUWest2: "eu-west-2";
readonly EUWest3: "eu-west-3";
readonly ILCentral1: "il-central-1";
readonly MECentral1: "me-central-1";
readonly MESouth1: "me-south-1";
readonly MXCentral1: "mx-central-1";
readonly SAEast1: "sa-east-1";
readonly USEast1: "us-east-1";
readonly USEast2: "us-east-2";
readonly USWest1: "us-west-1";
readonly USWest2: "us-west-2";
readonly CNNorth1: "cn-north-1";
readonly CNNorthwest1: "cn-northwest-1";
readonly USGovEast1: "us-gov-east-1";
readonly USGovWest1: "us-gov-west-1";
readonly USISOEast1: "us-iso-east-1";
readonly USISOWest1: "us-iso-west-1";
readonly USISOBEast1: "us-isob-east-1";
readonly EUISOEWest1: "eu-isoe-west-1";
};
/**
* A Region represents any valid Amazon region that may be targeted with deployments.
*/
export type Region = (typeof Region)[keyof typeof Region];