Skip to content

Literals#

Index > AppSync > Literals

Auto-generated documentation for AppSync type annotations stubs module mypy-boto3-appsync.

ApiCacheStatusType#

# ApiCacheStatusType usage example

from mypy_boto3_appsync.literals import ApiCacheStatusType

def get_value() -> ApiCacheStatusType:
    return "AVAILABLE"
# ApiCacheStatusType definition

ApiCacheStatusType = Literal[
    "AVAILABLE",
    "CREATING",
    "DELETING",
    "FAILED",
    "MODIFYING",
]

ApiCacheTypeType#

# ApiCacheTypeType usage example

from mypy_boto3_appsync.literals import ApiCacheTypeType

def get_value() -> ApiCacheTypeType:
    return "LARGE"
# ApiCacheTypeType definition

ApiCacheTypeType = Literal[
    "LARGE",
    "LARGE_12X",
    "LARGE_2X",
    "LARGE_4X",
    "LARGE_8X",
    "MEDIUM",
    "R4_2XLARGE",
    "R4_4XLARGE",
    "R4_8XLARGE",
    "R4_LARGE",
    "R4_XLARGE",
    "SMALL",
    "T2_MEDIUM",
    "T2_SMALL",
    "XLARGE",
]

ApiCachingBehaviorType#

# ApiCachingBehaviorType usage example

from mypy_boto3_appsync.literals import ApiCachingBehaviorType

def get_value() -> ApiCachingBehaviorType:
    return "FULL_REQUEST_CACHING"
# ApiCachingBehaviorType definition

ApiCachingBehaviorType = Literal[
    "FULL_REQUEST_CACHING",
    "PER_RESOLVER_CACHING",
]

AssociationStatusType#

# AssociationStatusType usage example

from mypy_boto3_appsync.literals import AssociationStatusType

def get_value() -> AssociationStatusType:
    return "FAILED"
# AssociationStatusType definition

AssociationStatusType = Literal[
    "FAILED",
    "PROCESSING",
    "SUCCESS",
]

AuthenticationTypeType#

# AuthenticationTypeType usage example

from mypy_boto3_appsync.literals import AuthenticationTypeType

def get_value() -> AuthenticationTypeType:
    return "AMAZON_COGNITO_USER_POOLS"
# AuthenticationTypeType definition

AuthenticationTypeType = Literal[
    "AMAZON_COGNITO_USER_POOLS",
    "API_KEY",
    "AWS_IAM",
    "AWS_LAMBDA",
    "OPENID_CONNECT",
]

AuthorizationTypeType#

# AuthorizationTypeType usage example

from mypy_boto3_appsync.literals import AuthorizationTypeType

def get_value() -> AuthorizationTypeType:
    return "AWS_IAM"
# AuthorizationTypeType definition

AuthorizationTypeType = Literal[
    "AWS_IAM",
]

CacheHealthMetricsConfigType#

# CacheHealthMetricsConfigType usage example

from mypy_boto3_appsync.literals import CacheHealthMetricsConfigType

def get_value() -> CacheHealthMetricsConfigType:
    return "DISABLED"
# CacheHealthMetricsConfigType definition

CacheHealthMetricsConfigType = Literal[
    "DISABLED",
    "ENABLED",
]

ConflictDetectionTypeType#

# ConflictDetectionTypeType usage example

from mypy_boto3_appsync.literals import ConflictDetectionTypeType

def get_value() -> ConflictDetectionTypeType:
    return "NONE"
# ConflictDetectionTypeType definition

ConflictDetectionTypeType = Literal[
    "NONE",
    "VERSION",
]

ConflictHandlerTypeType#

# ConflictHandlerTypeType usage example

from mypy_boto3_appsync.literals import ConflictHandlerTypeType

def get_value() -> ConflictHandlerTypeType:
    return "AUTOMERGE"
# ConflictHandlerTypeType definition

ConflictHandlerTypeType = Literal[
    "AUTOMERGE",
    "LAMBDA",
    "NONE",
    "OPTIMISTIC_CONCURRENCY",
]

DataSourceIntrospectionStatusType#

# DataSourceIntrospectionStatusType usage example

from mypy_boto3_appsync.literals import DataSourceIntrospectionStatusType

def get_value() -> DataSourceIntrospectionStatusType:
    return "FAILED"
# DataSourceIntrospectionStatusType definition

DataSourceIntrospectionStatusType = Literal[
    "FAILED",
    "PROCESSING",
    "SUCCESS",
]

DataSourceLevelMetricsBehaviorType#

# DataSourceLevelMetricsBehaviorType usage example

from mypy_boto3_appsync.literals import DataSourceLevelMetricsBehaviorType

def get_value() -> DataSourceLevelMetricsBehaviorType:
    return "FULL_REQUEST_DATA_SOURCE_METRICS"
# DataSourceLevelMetricsBehaviorType definition

DataSourceLevelMetricsBehaviorType = Literal[
    "FULL_REQUEST_DATA_SOURCE_METRICS",
    "PER_DATA_SOURCE_METRICS",
]

DataSourceLevelMetricsConfigType#

# DataSourceLevelMetricsConfigType usage example

from mypy_boto3_appsync.literals import DataSourceLevelMetricsConfigType

def get_value() -> DataSourceLevelMetricsConfigType:
    return "DISABLED"
# DataSourceLevelMetricsConfigType definition

DataSourceLevelMetricsConfigType = Literal[
    "DISABLED",
    "ENABLED",
]

DataSourceTypeType#

# DataSourceTypeType usage example

from mypy_boto3_appsync.literals import DataSourceTypeType

def get_value() -> DataSourceTypeType:
    return "AMAZON_DYNAMODB"
# DataSourceTypeType definition

DataSourceTypeType = Literal[
    "AMAZON_DYNAMODB",
    "AMAZON_ELASTICSEARCH",
    "AMAZON_EVENTBRIDGE",
    "AMAZON_OPENSEARCH_SERVICE",
    "AWS_LAMBDA",
    "HTTP",
    "NONE",
    "RELATIONAL_DATABASE",
]

DefaultActionType#

# DefaultActionType usage example

from mypy_boto3_appsync.literals import DefaultActionType

def get_value() -> DefaultActionType:
    return "ALLOW"
# DefaultActionType definition

DefaultActionType = Literal[
    "ALLOW",
    "DENY",
]

FieldLogLevelType#

# FieldLogLevelType usage example

from mypy_boto3_appsync.literals import FieldLogLevelType

def get_value() -> FieldLogLevelType:
    return "ALL"
# FieldLogLevelType definition

FieldLogLevelType = Literal[
    "ALL",
    "ERROR",
    "NONE",
]

GraphQLApiIntrospectionConfigType#

# GraphQLApiIntrospectionConfigType usage example

from mypy_boto3_appsync.literals import GraphQLApiIntrospectionConfigType

def get_value() -> GraphQLApiIntrospectionConfigType:
    return "DISABLED"
# GraphQLApiIntrospectionConfigType definition

GraphQLApiIntrospectionConfigType = Literal[
    "DISABLED",
    "ENABLED",
]

GraphQLApiTypeType#

# GraphQLApiTypeType usage example

from mypy_boto3_appsync.literals import GraphQLApiTypeType

def get_value() -> GraphQLApiTypeType:
    return "GRAPHQL"
# GraphQLApiTypeType definition

GraphQLApiTypeType = Literal[
    "GRAPHQL",
    "MERGED",
]

GraphQLApiVisibilityType#

# GraphQLApiVisibilityType usage example

from mypy_boto3_appsync.literals import GraphQLApiVisibilityType

def get_value() -> GraphQLApiVisibilityType:
    return "GLOBAL"
# GraphQLApiVisibilityType definition

GraphQLApiVisibilityType = Literal[
    "GLOBAL",
    "PRIVATE",
]

ListApiKeysPaginatorName#

# ListApiKeysPaginatorName usage example

from mypy_boto3_appsync.literals import ListApiKeysPaginatorName

def get_value() -> ListApiKeysPaginatorName:
    return "list_api_keys"
# ListApiKeysPaginatorName definition

ListApiKeysPaginatorName = Literal[
    "list_api_keys",
]

ListDataSourcesPaginatorName#

# ListDataSourcesPaginatorName usage example

from mypy_boto3_appsync.literals import ListDataSourcesPaginatorName

def get_value() -> ListDataSourcesPaginatorName:
    return "list_data_sources"
# ListDataSourcesPaginatorName definition

ListDataSourcesPaginatorName = Literal[
    "list_data_sources",
]

ListFunctionsPaginatorName#

# ListFunctionsPaginatorName usage example

from mypy_boto3_appsync.literals import ListFunctionsPaginatorName

def get_value() -> ListFunctionsPaginatorName:
    return "list_functions"
# ListFunctionsPaginatorName definition

ListFunctionsPaginatorName = Literal[
    "list_functions",
]

ListGraphqlApisPaginatorName#

# ListGraphqlApisPaginatorName usage example

from mypy_boto3_appsync.literals import ListGraphqlApisPaginatorName

def get_value() -> ListGraphqlApisPaginatorName:
    return "list_graphql_apis"
# ListGraphqlApisPaginatorName definition

ListGraphqlApisPaginatorName = Literal[
    "list_graphql_apis",
]

ListResolversByFunctionPaginatorName#

# ListResolversByFunctionPaginatorName usage example

from mypy_boto3_appsync.literals import ListResolversByFunctionPaginatorName

def get_value() -> ListResolversByFunctionPaginatorName:
    return "list_resolvers_by_function"
# ListResolversByFunctionPaginatorName definition

ListResolversByFunctionPaginatorName = Literal[
    "list_resolvers_by_function",
]

ListResolversPaginatorName#

# ListResolversPaginatorName usage example

from mypy_boto3_appsync.literals import ListResolversPaginatorName

def get_value() -> ListResolversPaginatorName:
    return "list_resolvers"
# ListResolversPaginatorName definition

ListResolversPaginatorName = Literal[
    "list_resolvers",
]

ListTypesPaginatorName#

# ListTypesPaginatorName usage example

from mypy_boto3_appsync.literals import ListTypesPaginatorName

def get_value() -> ListTypesPaginatorName:
    return "list_types"
# ListTypesPaginatorName definition

ListTypesPaginatorName = Literal[
    "list_types",
]

MergeTypeType#

# MergeTypeType usage example

from mypy_boto3_appsync.literals import MergeTypeType

def get_value() -> MergeTypeType:
    return "AUTO_MERGE"
# MergeTypeType definition

MergeTypeType = Literal[
    "AUTO_MERGE",
    "MANUAL_MERGE",
]

OperationLevelMetricsConfigType#

# OperationLevelMetricsConfigType usage example

from mypy_boto3_appsync.literals import OperationLevelMetricsConfigType

def get_value() -> OperationLevelMetricsConfigType:
    return "DISABLED"
# OperationLevelMetricsConfigType definition

OperationLevelMetricsConfigType = Literal[
    "DISABLED",
    "ENABLED",
]

OutputTypeType#

# OutputTypeType usage example

from mypy_boto3_appsync.literals import OutputTypeType

def get_value() -> OutputTypeType:
    return "JSON"
# OutputTypeType definition

OutputTypeType = Literal[
    "JSON",
    "SDL",
]

OwnershipType#

# OwnershipType usage example

from mypy_boto3_appsync.literals import OwnershipType

def get_value() -> OwnershipType:
    return "CURRENT_ACCOUNT"
# OwnershipType definition

OwnershipType = Literal[
    "CURRENT_ACCOUNT",
    "OTHER_ACCOUNTS",
]

RelationalDatabaseSourceTypeType#

# RelationalDatabaseSourceTypeType usage example

from mypy_boto3_appsync.literals import RelationalDatabaseSourceTypeType

def get_value() -> RelationalDatabaseSourceTypeType:
    return "RDS_HTTP_ENDPOINT"
# RelationalDatabaseSourceTypeType definition

RelationalDatabaseSourceTypeType = Literal[
    "RDS_HTTP_ENDPOINT",
]

ResolverKindType#

# ResolverKindType usage example

from mypy_boto3_appsync.literals import ResolverKindType

def get_value() -> ResolverKindType:
    return "PIPELINE"
# ResolverKindType definition

ResolverKindType = Literal[
    "PIPELINE",
    "UNIT",
]

ResolverLevelMetricsBehaviorType#

# ResolverLevelMetricsBehaviorType usage example

from mypy_boto3_appsync.literals import ResolverLevelMetricsBehaviorType

def get_value() -> ResolverLevelMetricsBehaviorType:
    return "FULL_REQUEST_RESOLVER_METRICS"
# ResolverLevelMetricsBehaviorType definition

ResolverLevelMetricsBehaviorType = Literal[
    "FULL_REQUEST_RESOLVER_METRICS",
    "PER_RESOLVER_METRICS",
]

ResolverLevelMetricsConfigType#

# ResolverLevelMetricsConfigType usage example

from mypy_boto3_appsync.literals import ResolverLevelMetricsConfigType

def get_value() -> ResolverLevelMetricsConfigType:
    return "DISABLED"
# ResolverLevelMetricsConfigType definition

ResolverLevelMetricsConfigType = Literal[
    "DISABLED",
    "ENABLED",
]

RuntimeNameType#

# RuntimeNameType usage example

from mypy_boto3_appsync.literals import RuntimeNameType

def get_value() -> RuntimeNameType:
    return "APPSYNC_JS"
# RuntimeNameType definition

RuntimeNameType = Literal[
    "APPSYNC_JS",
]

SchemaStatusType#

# SchemaStatusType usage example

from mypy_boto3_appsync.literals import SchemaStatusType

def get_value() -> SchemaStatusType:
    return "ACTIVE"
# SchemaStatusType definition

SchemaStatusType = Literal[
    "ACTIVE",
    "DELETING",
    "FAILED",
    "NOT_APPLICABLE",
    "PROCESSING",
    "SUCCESS",
]

SourceApiAssociationStatusType#

# SourceApiAssociationStatusType usage example

from mypy_boto3_appsync.literals import SourceApiAssociationStatusType

def get_value() -> SourceApiAssociationStatusType:
    return "AUTO_MERGE_SCHEDULE_FAILED"
# SourceApiAssociationStatusType definition

SourceApiAssociationStatusType = Literal[
    "AUTO_MERGE_SCHEDULE_FAILED",
    "DELETION_FAILED",
    "DELETION_IN_PROGRESS",
    "DELETION_SCHEDULED",
    "MERGE_FAILED",
    "MERGE_IN_PROGRESS",
    "MERGE_SCHEDULED",
    "MERGE_SUCCESS",
]

TypeDefinitionFormatType#

# TypeDefinitionFormatType usage example

from mypy_boto3_appsync.literals import TypeDefinitionFormatType

def get_value() -> TypeDefinitionFormatType:
    return "JSON"
# TypeDefinitionFormatType definition

TypeDefinitionFormatType = Literal[
    "JSON",
    "SDL",
]

AppSyncServiceName#

# AppSyncServiceName usage example

from mypy_boto3_appsync.literals import AppSyncServiceName

def get_value() -> AppSyncServiceName:
    return "appsync"
# AppSyncServiceName definition

AppSyncServiceName = Literal[
    "appsync",
]

ServiceName#

# ServiceName usage example

from mypy_boto3_appsync.literals import ServiceName

def get_value() -> ServiceName:
    return "accessanalyzer"
# ServiceName definition

ServiceName = Literal[
    "accessanalyzer",
    "account",
    "acm",
    "acm-pca",
    "alexaforbusiness",
    "amp",
    "amplify",
    "amplifybackend",
    "amplifyuibuilder",
    "apigateway",
    "apigatewaymanagementapi",
    "apigatewayv2",
    "appconfig",
    "appconfigdata",
    "appfabric",
    "appflow",
    "appintegrations",
    "application-autoscaling",
    "application-insights",
    "applicationcostprofiler",
    "appmesh",
    "apprunner",
    "appstream",
    "appsync",
    "arc-zonal-shift",
    "artifact",
    "athena",
    "auditmanager",
    "autoscaling",
    "autoscaling-plans",
    "b2bi",
    "backup",
    "backup-gateway",
    "backupstorage",
    "batch",
    "bcm-data-exports",
    "bedrock",
    "bedrock-agent",
    "bedrock-agent-runtime",
    "bedrock-runtime",
    "billingconductor",
    "braket",
    "budgets",
    "ce",
    "chatbot",
    "chime",
    "chime-sdk-identity",
    "chime-sdk-media-pipelines",
    "chime-sdk-meetings",
    "chime-sdk-messaging",
    "chime-sdk-voice",
    "cleanrooms",
    "cleanroomsml",
    "cloud9",
    "cloudcontrol",
    "clouddirectory",
    "cloudformation",
    "cloudfront",
    "cloudfront-keyvaluestore",
    "cloudhsm",
    "cloudhsmv2",
    "cloudsearch",
    "cloudsearchdomain",
    "cloudtrail",
    "cloudtrail-data",
    "cloudwatch",
    "codeartifact",
    "codebuild",
    "codecatalyst",
    "codecommit",
    "codedeploy",
    "codeguru-reviewer",
    "codeguru-security",
    "codeguruprofiler",
    "codepipeline",
    "codestar",
    "codestar-connections",
    "codestar-notifications",
    "cognito-identity",
    "cognito-idp",
    "cognito-sync",
    "comprehend",
    "comprehendmedical",
    "compute-optimizer",
    "config",
    "connect",
    "connect-contact-lens",
    "connectcampaigns",
    "connectcases",
    "connectparticipant",
    "controltower",
    "cost-optimization-hub",
    "cur",
    "customer-profiles",
    "databrew",
    "dataexchange",
    "datapipeline",
    "datasync",
    "datazone",
    "dax",
    "detective",
    "devicefarm",
    "devops-guru",
    "directconnect",
    "discovery",
    "dlm",
    "dms",
    "docdb",
    "docdb-elastic",
    "drs",
    "ds",
    "dynamodb",
    "dynamodbstreams",
    "ebs",
    "ec2",
    "ec2-instance-connect",
    "ecr",
    "ecr-public",
    "ecs",
    "efs",
    "eks",
    "eks-auth",
    "elastic-inference",
    "elasticache",
    "elasticbeanstalk",
    "elastictranscoder",
    "elb",
    "elbv2",
    "emr",
    "emr-containers",
    "emr-serverless",
    "entityresolution",
    "es",
    "events",
    "evidently",
    "finspace",
    "finspace-data",
    "firehose",
    "fis",
    "fms",
    "forecast",
    "forecastquery",
    "frauddetector",
    "freetier",
    "fsx",
    "gamelift",
    "glacier",
    "globalaccelerator",
    "glue",
    "grafana",
    "greengrass",
    "greengrassv2",
    "groundstation",
    "guardduty",
    "health",
    "healthlake",
    "honeycode",
    "iam",
    "identitystore",
    "imagebuilder",
    "importexport",
    "inspector",
    "inspector-scan",
    "inspector2",
    "internetmonitor",
    "iot",
    "iot-data",
    "iot-jobs-data",
    "iot1click-devices",
    "iot1click-projects",
    "iotanalytics",
    "iotdeviceadvisor",
    "iotevents",
    "iotevents-data",
    "iotfleethub",
    "iotfleetwise",
    "iotsecuretunneling",
    "iotsitewise",
    "iotthingsgraph",
    "iottwinmaker",
    "iotwireless",
    "ivs",
    "ivs-realtime",
    "ivschat",
    "kafka",
    "kafkaconnect",
    "kendra",
    "kendra-ranking",
    "keyspaces",
    "kinesis",
    "kinesis-video-archived-media",
    "kinesis-video-media",
    "kinesis-video-signaling",
    "kinesis-video-webrtc-storage",
    "kinesisanalytics",
    "kinesisanalyticsv2",
    "kinesisvideo",
    "kms",
    "lakeformation",
    "lambda",
    "launch-wizard",
    "lex-models",
    "lex-runtime",
    "lexv2-models",
    "lexv2-runtime",
    "license-manager",
    "license-manager-linux-subscriptions",
    "license-manager-user-subscriptions",
    "lightsail",
    "location",
    "logs",
    "lookoutequipment",
    "lookoutmetrics",
    "lookoutvision",
    "m2",
    "machinelearning",
    "macie2",
    "managedblockchain",
    "managedblockchain-query",
    "marketplace-agreement",
    "marketplace-catalog",
    "marketplace-deployment",
    "marketplace-entitlement",
    "marketplacecommerceanalytics",
    "mediaconnect",
    "mediaconvert",
    "medialive",
    "mediapackage",
    "mediapackage-vod",
    "mediapackagev2",
    "mediastore",
    "mediastore-data",
    "mediatailor",
    "medical-imaging",
    "memorydb",
    "meteringmarketplace",
    "mgh",
    "mgn",
    "migration-hub-refactor-spaces",
    "migrationhub-config",
    "migrationhuborchestrator",
    "migrationhubstrategy",
    "mobile",
    "mq",
    "mturk",
    "mwaa",
    "neptune",
    "neptune-graph",
    "neptunedata",
    "network-firewall",
    "networkmanager",
    "networkmonitor",
    "nimble",
    "oam",
    "omics",
    "opensearch",
    "opensearchserverless",
    "opsworks",
    "opsworkscm",
    "organizations",
    "osis",
    "outposts",
    "panorama",
    "payment-cryptography",
    "payment-cryptography-data",
    "pca-connector-ad",
    "personalize",
    "personalize-events",
    "personalize-runtime",
    "pi",
    "pinpoint",
    "pinpoint-email",
    "pinpoint-sms-voice",
    "pinpoint-sms-voice-v2",
    "pipes",
    "polly",
    "pricing",
    "privatenetworks",
    "proton",
    "qbusiness",
    "qconnect",
    "qldb",
    "qldb-session",
    "quicksight",
    "ram",
    "rbin",
    "rds",
    "rds-data",
    "redshift",
    "redshift-data",
    "redshift-serverless",
    "rekognition",
    "repostspace",
    "resiliencehub",
    "resource-explorer-2",
    "resource-groups",
    "resourcegroupstaggingapi",
    "robomaker",
    "rolesanywhere",
    "route53",
    "route53-recovery-cluster",
    "route53-recovery-control-config",
    "route53-recovery-readiness",
    "route53domains",
    "route53resolver",
    "rum",
    "s3",
    "s3control",
    "s3outposts",
    "sagemaker",
    "sagemaker-a2i-runtime",
    "sagemaker-edge",
    "sagemaker-featurestore-runtime",
    "sagemaker-geospatial",
    "sagemaker-metrics",
    "sagemaker-runtime",
    "savingsplans",
    "scheduler",
    "schemas",
    "sdb",
    "secretsmanager",
    "securityhub",
    "securitylake",
    "serverlessrepo",
    "service-quotas",
    "servicecatalog",
    "servicecatalog-appregistry",
    "servicediscovery",
    "ses",
    "sesv2",
    "shield",
    "signer",
    "simspaceweaver",
    "sms",
    "sms-voice",
    "snow-device-management",
    "snowball",
    "sns",
    "sqs",
    "ssm",
    "ssm-contacts",
    "ssm-incidents",
    "ssm-sap",
    "sso",
    "sso-admin",
    "sso-oidc",
    "stepfunctions",
    "storagegateway",
    "sts",
    "supplychain",
    "support",
    "support-app",
    "swf",
    "synthetics",
    "textract",
    "timestream-influxdb",
    "timestream-query",
    "timestream-write",
    "tnb",
    "transcribe",
    "transfer",
    "translate",
    "trustedadvisor",
    "verifiedpermissions",
    "voice-id",
    "vpc-lattice",
    "waf",
    "waf-regional",
    "wafv2",
    "wellarchitected",
    "wisdom",
    "workdocs",
    "worklink",
    "workmail",
    "workmailmessageflow",
    "workspaces",
    "workspaces-thin-client",
    "workspaces-web",
    "xray",
]

ResourceServiceName#

# ResourceServiceName usage example

from mypy_boto3_appsync.literals import ResourceServiceName

def get_value() -> ResourceServiceName:
    return "cloudformation"
# ResourceServiceName definition

ResourceServiceName = Literal[
    "cloudformation",
    "cloudwatch",
    "dynamodb",
    "ec2",
    "glacier",
    "iam",
    "opsworks",
    "s3",
    "sns",
    "sqs",
]

PaginatorName#

# PaginatorName usage example

from mypy_boto3_appsync.literals import PaginatorName

def get_value() -> PaginatorName:
    return "list_api_keys"
# PaginatorName definition

PaginatorName = Literal[
    "list_api_keys",
    "list_data_sources",
    "list_functions",
    "list_graphql_apis",
    "list_resolvers",
    "list_resolvers_by_function",
    "list_types",
]

RegionName#

# RegionName usage example

from mypy_boto3_appsync.literals import RegionName

def get_value() -> RegionName:
    return "af-south-1"
# RegionName definition

RegionName = Literal[
    "af-south-1",
    "ap-east-1",
    "ap-northeast-1",
    "ap-northeast-2",
    "ap-northeast-3",
    "ap-south-1",
    "ap-south-2",
    "ap-southeast-1",
    "ap-southeast-2",
    "ap-southeast-3",
    "ap-southeast-4",
    "ca-central-1",
    "eu-central-1",
    "eu-central-2",
    "eu-north-1",
    "eu-south-1",
    "eu-south-2",
    "eu-west-1",
    "eu-west-2",
    "eu-west-3",
    "il-central-1",
    "me-central-1",
    "me-south-1",
    "sa-east-1",
    "us-east-1",
    "us-east-2",
    "us-west-1",
    "us-west-2",
]