diff --git a/config/config.py b/config/config.py index 5043d8ec..0bf33b57 100644 --- a/config/config.py +++ b/config/config.py @@ -5,3 +5,9 @@ prowler_version = "3.0-alfa" # Groups groups_file = "groups.json" + +# AWS services-regions matrix json +aws_services_json_url = ( + "https://api.regional-table.region-services.aws.a2z.com/index.json" +) +aws_services_json_file = "providers/aws/aws_regions_services.json" diff --git a/lib/arn/arn.py b/lib/arn/arn.py new file mode 100644 index 00000000..28fac5d2 --- /dev/null +++ b/lib/arn/arn.py @@ -0,0 +1,45 @@ +from arnparse import arnparse + +from lib.arn.error import ( + RoleArnParsingEmptyResource, + RoleArnParsingFailedMissingFields, + RoleArnParsingIAMRegionNotEmpty, + RoleArnParsingInvalidAccountID, + RoleArnParsingInvalidResourceType, + RoleArnParsingPartitionEmpty, + RoleArnParsingServiceNotIAM, +) + + +def arn_parsing(arn): + # check for number of fields, must be six + if len(arn.split(":")) != 6: + raise RoleArnParsingFailedMissingFields + else: + arn_parsed = arnparse(arn) + # First check if region is empty (in IAM arns region is always empty) + if arn_parsed.region != None: + raise RoleArnParsingIAMRegionNotEmpty + else: + # check if needed fields are filled: + # - partition + # - service + # - account_id + # - resource_type + # - resource + if arn_parsed.partition == None: + raise RoleArnParsingPartitionEmpty + elif arn_parsed.service != "iam": + raise RoleArnParsingServiceNotIAM + elif ( + arn_parsed.account_id == None + or len(arn_parsed.account_id) != 12 + or not arn_parsed.account_id.isnumeric() + ): + raise RoleArnParsingInvalidAccountID + elif arn_parsed.resource_type != "role": + raise RoleArnParsingInvalidResourceType + elif arn_parsed.resource == "": + raise RoleArnParsingEmptyResource + else: + return arn_parsed diff --git a/lib/arn/error.py b/lib/arn/error.py new file mode 100644 index 00000000..2084953a --- /dev/null +++ b/lib/arn/error.py @@ -0,0 +1,43 @@ +class RoleArnParsingFailedMissingFields(Exception): + # The arn contains a numberof fields different than six separated by :" + def __init__(self): + self.message = "The assumed role arn contains a number of fields different than six separated by :, please input a valid arn" + super().__init__(self.message) + + +class RoleArnParsingIAMRegionNotEmpty(Exception): + # The arn contains a non-empty value for region, since it is an IAM arn is not valid + def __init__(self): + self.message = "The assumed role arn contains a non-empty value for region, since it is an IAM arn is not valid, please input a valid arn" + super().__init__(self.message) + + +class RoleArnParsingPartitionEmpty(Exception): + # The arn contains an empty value for partition + def __init__(self): + self.message = "The assumed role arn does not contain a value for partition, please input a valid arn" + super().__init__(self.message) + + +class RoleArnParsingServiceNotIAM(Exception): + def __init__(self): + self.message = "The assumed role arn contains a value for service distinct than iam, please input a valid arn" + super().__init__(self.message) + + +class RoleArnParsingInvalidAccountID(Exception): + def __init__(self): + self.message = "The assumed role arn contains a value for account id empty or invalid, a valid account id must be composed of 12 numbers, please input a valid arn" + super().__init__(self.message) + + +class RoleArnParsingInvalidResourceType(Exception): + def __init__(self): + self.message = "The assumed role arn contains a value for resource type different than role, please input a valid arn" + super().__init__(self.message) + + +class RoleArnParsingEmptyResource(Exception): + def __init__(self): + self.message = "The assumed role arn does not contain a value for resource, please input a valid arn" + super().__init__(self.message) diff --git a/lib/check/check.py b/lib/check/check.py index d2706ec5..8fc51c50 100644 --- a/lib/check/check.py +++ b/lib/check/check.py @@ -3,6 +3,7 @@ import pkgutil from abc import ABC, abstractmethod from dataclasses import dataclass from types import ModuleType +from colorama import Fore, Style from config.config import groups_file from lib.logger import logger @@ -126,7 +127,7 @@ def recover_modules_from_provider(provider: str, service: str = None) -> list: def run_check(check): - print(f"\nCheck Name: {check.CheckName}") + print(f"\nCheck Name: {check.CheckName} - {Fore.MAGENTA}{check.ServiceName}{Fore.YELLOW}[{check.Severity}]{Style.RESET_ALL}") logger.debug(f"Executing check: {check.CheckName}") findings = check.execute() report(findings) diff --git a/lib/outputs.py b/lib/outputs.py index f7636621..35238589 100644 --- a/lib/outputs.py +++ b/lib/outputs.py @@ -2,6 +2,7 @@ from colorama import Fore, Style def report(check_findings): + check_findings.sort(key=lambda x: x.region) for finding in check_findings: color = set_report_color(finding.status) print( diff --git a/providers/aws/aws_provider.py b/providers/aws/aws_provider.py index 8553e7e9..acf62ba5 100644 --- a/providers/aws/aws_provider.py +++ b/providers/aws/aws_provider.py @@ -6,6 +6,7 @@ from boto3 import session from botocore.credentials import RefreshableCredentials from botocore.session import get_session +from lib.arn.arn import arn_parsing from lib.logger import logger @@ -20,20 +21,19 @@ class AWS_Credentials: @dataclass class Input_Data: profile: str - role_name: str - account_to_assume: str + role_arn: str session_duration: int external_id: str + regions: list @dataclass class AWS_Assume_Role: - role_name: str - account_to_assume: str + role_arn: str session_duration: int external_id: str sts_session: session - caller_identity: str + partition: str @dataclass @@ -106,7 +106,6 @@ class AWS_Provider: def validate_credentials(validate_session): - try: validate_credentials_client = validate_session.client("sts") caller_identity = validate_credentials_client.get_caller_identity() @@ -118,36 +117,61 @@ def validate_credentials(validate_session): def provider_set_session(session_input): + + # global variables that are going to be shared accross the project global aws_session global original_session + global audited_regions + global audited_partition + global audited_account + + assumed_session = None + + # Initialize a session info dataclass only with info about the profile session_info = AWS_Session_Info( session_input.profile, None, None, ) + # Create an global original session using only profile/basic credentials info original_session = AWS_Provider(session_info).get_session() logger.info("Validating credentials ...") + # Verificate if we have valid credentials caller_identity = validate_credentials(original_session) - role_info = AWS_Assume_Role( - session_input.role_name, - session_input.account_to_assume, - session_input.session_duration, - session_input.external_id, - original_session, - caller_identity, - ) logger.info("Credentials validated") logger.info(f"Original caller identity UserId : {caller_identity['UserId']}") logger.info(f"Original caller identity ARN : {caller_identity['Arn']}") - if session_input.role_name and session_input.account_to_assume: - logger.info( - f"Assuming role {role_info.role_name} in account {role_info.account_to_assume}" + # Set some global values for original session + audited_regions = session_input.regions + audited_account = caller_identity["Account"] + audited_partition = arnparse(caller_identity["Arn"]).partition + + if session_input.role_arn: + # Check if role arn is valid + try: + # this returns the arn already parsed, calls arnparse, into a dict to be used when it is needed to access its fields + role_arn_parsed = arn_parsing(session_input.role_arn) + + except Exception as error: + logger.critical(f"{error.__class__.__name__} -- {error}") + quit() + + # Set info for role assumption if needed + role_info = AWS_Assume_Role( + session_input.role_arn, + session_input.session_duration, + session_input.external_id, + original_session, + audited_partition, ) + logger.info(f"Assuming role {role_info.role_arn}") + # Assume the role assumed_role_response = assume_role(role_info) logger.info("Role assumed") + # Set the info needed to create a session with an assumed role session_info = AWS_Session_Info( session_input.profile, AWS_Credentials( @@ -160,26 +184,33 @@ def provider_set_session(session_input): ), role_info, ) + assumed_session = AWS_Provider(session_info).get_session() - aws_session = AWS_Provider(session_info).get_session() + if assumed_session: + aws_session = assumed_session + audited_account = role_arn_parsed.account_id + audited_partition = role_arn_parsed.partition + else: + aws_session = original_session def assume_role(role_info): try: + # set the info to assume the role from the partition, account and role name sts_client = role_info.sts_session.client("sts") - arn_caller_identity = arnparse(role_info.caller_identity["Arn"]) - role_arn = f"arn:{arn_caller_identity.partition}:iam::{role_info.account_to_assume}:role/{role_info.role_name}" + # If external id, set it to the assume role api call if role_info.external_id: assumed_credentials = sts_client.assume_role( - RoleArn=role_arn, + RoleArn=role_info.role_arn, RoleSessionName="ProwlerProSession", DurationSeconds=role_info.session_duration, ExternalId=role_info.external_id, ) + # else assume the role without the external id else: assumed_credentials = sts_client.assume_role( - RoleArn=role_arn, + RoleArn=role_info.role_arn, RoleSessionName="ProwlerProSession", DurationSeconds=role_info.session_duration, ) diff --git a/providers/aws/aws_regions_services.json b/providers/aws/aws_regions_services.json new file mode 100644 index 00000000..3313a14b --- /dev/null +++ b/providers/aws/aws_regions_services.json @@ -0,0 +1,29866 @@ +{ + "metadata": { + "copyright": "Copyright 2022 Amazon.com, Inc. or its affiliates. All rights reserved.", + "disclaimer": "This file is intended for use only on aws.amazon.com. We do not guarantee its availability or accuracy.", + "format:version": "1.0", + "source:version": "20220527222700" + }, + "prices": [ + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Translate", + "aws:serviceUrl": "https://aws.amazon.com/translate/" + }, + "id": "translate:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:me-south-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Route 53", + "aws:serviceUrl": "https://aws.amazon.com/route53/" + }, + "id": "route53:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Lookout for Metrics", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-metrics/" + }, + "id": "lookoutmetrics:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS OpsWorks for Puppet Enterprise", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/puppetenterprise/" + }, + "id": "opsworkspuppetenterprise:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS DataSync", + "aws:serviceUrl": "https://aws.amazon.com/datasync" + }, + "id": "datasync:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Fraud Detector", + "aws:serviceUrl": "https://aws.amazon.com/fraud-detector/" + }, + "id": "frauddetector:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Fraud Detector", + "aws:serviceUrl": "https://aws.amazon.com/fraud-detector/" + }, + "id": "frauddetector:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Fraud Detector", + "aws:serviceUrl": "https://aws.amazon.com/fraud-detector/" + }, + "id": "frauddetector:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Fraud Detector", + "aws:serviceUrl": "https://aws.amazon.com/fraud-detector/" + }, + "id": "frauddetector:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Fraud Detector", + "aws:serviceUrl": "https://aws.amazon.com/fraud-detector/" + }, + "id": "frauddetector:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Fraud Detector", + "aws:serviceUrl": "https://aws.amazon.com/fraud-detector/" + }, + "id": "frauddetector:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Shield", + "aws:serviceUrl": "https://aws.amazon.com/shield/" + }, + "id": "shield:ca-central-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:us-east-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:us-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Red Hat OpenShift Service on AWS (ROSA)", + "aws:serviceUrl": "https://aws.amazon.com/rosa/" + }, + "id": "rosa:eu-west-3" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Managed Workflows for Apache Airflow", + "aws:serviceUrl": "https://aws.amazon.com/managed-workflows-for-apache-airflow/" + }, + "id": "mwaa:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CloudShell", + "aws:serviceUrl": "https://aws.amazon.com/cloudshell/" + }, + "id": "cloudshell:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:ap-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:ap-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Cloud Map", + "aws:serviceUrl": "https://aws.amazon.com/cloud-map/" + }, + "id": "servicediscovery:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:me-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon SageMaker", + "aws:serviceUrl": "https://aws.amazon.com/sagemaker/" + }, + "id": "sagemaker:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic Transcoder", + "aws:serviceUrl": "https://aws.amazon.com/elastictranscoder/" + }, + "id": "elastictranscoder:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon DevOps Guru", + "aws:serviceUrl": "https://aws.amazon.com/devops-guru/" + }, + "id": "devops-guru:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:me-south-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Transit Gateway", + "aws:serviceUrl": "https://aws.amazon.com/transit-gateway/" + }, + "id": "transitgateway:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon IVS", + "aws:serviceUrl": "https://aws.amazon.com/ivs/" + }, + "id": "ivs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon IVS", + "aws:serviceUrl": "https://aws.amazon.com/ivs/" + }, + "id": "ivs:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon IVS", + "aws:serviceUrl": "https://aws.amazon.com/ivs/" + }, + "id": "ivs:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon IVS", + "aws:serviceUrl": "https://aws.amazon.com/ivs/" + }, + "id": "ivs:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon IVS", + "aws:serviceUrl": "https://aws.amazon.com/ivs/" + }, + "id": "ivs:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon IVS", + "aws:serviceUrl": "https://aws.amazon.com/ivs/" + }, + "id": "ivs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon IVS", + "aws:serviceUrl": "https://aws.amazon.com/ivs/" + }, + "id": "ivs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Inspector", + "aws:serviceUrl": "https://aws.amazon.com/inspector/" + }, + "id": "inspector2:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic Inference", + "aws:serviceUrl": "https://aws.amazon.com/elastic-inference/" + }, + "id": "elastic-inference:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic Inference", + "aws:serviceUrl": "https://aws.amazon.com/elastic-inference/" + }, + "id": "elastic-inference:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic Inference", + "aws:serviceUrl": "https://aws.amazon.com/elastic-inference/" + }, + "id": "elastic-inference:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic Inference", + "aws:serviceUrl": "https://aws.amazon.com/elastic-inference/" + }, + "id": "elastic-inference:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic Inference", + "aws:serviceUrl": "https://aws.amazon.com/elastic-inference/" + }, + "id": "elastic-inference:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic Inference", + "aws:serviceUrl": "https://aws.amazon.com/elastic-inference/" + }, + "id": "elastic-inference:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents-data:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CloudTrail", + "aws:serviceUrl": "https://aws.amazon.com/cloudtrail/" + }, + "id": "cloudtrail:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Systems Manager", + "aws:serviceUrl": "https://aws.amazon.com/systems-manager/" + }, + "id": "ssm:eu-west-3" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:me-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CodeDeploy", + "aws:serviceUrl": "https://aws.amazon.com/codedeploy/" + }, + "id": "codedeploy:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS IoT Greengrass", + "aws:serviceUrl": "https://aws.amazon.com/greengrass/" + }, + "id": "greengrass:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT Device Defender", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-defender/" + }, + "id": "iotdevicedefender:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon HealthLake", + "aws:serviceUrl": "https://aws.amazon.com/healthlake/" + }, + "id": "ahl:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon HealthLake", + "aws:serviceUrl": "https://aws.amazon.com/healthlake/" + }, + "id": "ahl:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon HealthLake", + "aws:serviceUrl": "https://aws.amazon.com/healthlake/" + }, + "id": "ahl:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:us-west-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:eu-central-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:me-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic Compute Cloud (EC2)", + "aws:serviceUrl": "https://aws.amazon.com/ec2/" + }, + "id": "ec2:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon QuickSight", + "aws:serviceUrl": "https://aws.amazon.com/quicksight/" + }, + "id": "quicksight:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:af-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:us-east-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Polly", + "aws:serviceUrl": "https://aws.amazon.com/polly/" + }, + "id": "polly:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT 1-Click", + "aws:serviceUrl": "https://aws.amazon.com/iot-1-click/" + }, + "id": "iot1click-projects:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT 1-Click", + "aws:serviceUrl": "https://aws.amazon.com/iot-1-click/" + }, + "id": "iot1click-projects:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT 1-Click", + "aws:serviceUrl": "https://aws.amazon.com/iot-1-click/" + }, + "id": "iot1click-projects:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS IoT 1-Click", + "aws:serviceUrl": "https://aws.amazon.com/iot-1-click/" + }, + "id": "iot1click-projects:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT 1-Click", + "aws:serviceUrl": "https://aws.amazon.com/iot-1-click/" + }, + "id": "iot1click-projects:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IoT 1-Click", + "aws:serviceUrl": "https://aws.amazon.com/iot-1-click/" + }, + "id": "iot1click-projects:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT 1-Click", + "aws:serviceUrl": "https://aws.amazon.com/iot-1-click/" + }, + "id": "iot1click-projects:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Athena", + "aws:serviceUrl": "https://aws.amazon.com/athena/" + }, + "id": "athena:us-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon RDS on VMware", + "aws:serviceUrl": "https://aws.amazon.com/rds/vmware/" + }, + "id": "rdsvmware:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:us-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Ground Station", + "aws:serviceUrl": "https://aws.amazon.com/ground-station/" + }, + "id": "groundstation:eu-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:cn-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Kinesis Data Analytics", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/analytics/" + }, + "id": "kinesisanalytics:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:af-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Chatbot", + "aws:serviceUrl": "https://aws.amazon.com/chatbot/" + }, + "id": "chatbot:us-east-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:us-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Redshift", + "aws:serviceUrl": "https://aws.amazon.com/redshift/" + }, + "id": "redshift:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elasticsearch Service", + "aws:serviceUrl": "https://aws.amazon.com/elasticsearch-service/" + }, + "id": "es:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Identity and Access Management (IAM)", + "aws:serviceUrl": "https://aws.amazon.com/iam" + }, + "id": "iam:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:us-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Data Exchange", + "aws:serviceUrl": "https://aws.amazon.com/data-exchange/" + }, + "id": "dataexchange:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": " AWS IoT Events", + "aws:serviceUrl": "https://aws.amazon.com/iot-events/" + }, + "id": "iotevents:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Honeycode", + "aws:serviceUrl": "https://www.honeycode.aws/" + }, + "id": "honeycode:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:us-west-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Kinesis Data Firehose", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/firehose/" + }, + "id": "firehose:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Kinesis Video Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/video-streams/" + }, + "id": "kinesisvideo:eu-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon GuardDuty", + "aws:serviceUrl": "https://aws.amazon.com/guardduty/" + }, + "id": "guardduty:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon AppStream 2.0", + "aws:serviceUrl": "https://aws.amazon.com/appstream2/" + }, + "id": "appstream:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Nimble Studio", + "aws:serviceUrl": "https://aws.amazon.com/nimble-studio/" + }, + "id": "nimble:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Nimble Studio", + "aws:serviceUrl": "https://aws.amazon.com/nimble-studio/" + }, + "id": "nimble:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Nimble Studio", + "aws:serviceUrl": "https://aws.amazon.com/nimble-studio/" + }, + "id": "nimble:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Nimble Studio", + "aws:serviceUrl": "https://aws.amazon.com/nimble-studio/" + }, + "id": "nimble:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Nimble Studio", + "aws:serviceUrl": "https://aws.amazon.com/nimble-studio/" + }, + "id": "nimble:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Nimble Studio", + "aws:serviceUrl": "https://aws.amazon.com/nimble-studio/" + }, + "id": "nimble:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "VMware Cloud on AWS", + "aws:serviceUrl": "https://aws.amazon.com/vmware/" + }, + "id": "vmwarecloudonaws:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:eu-north-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Resource Access Manager (RAM)", + "aws:serviceUrl": "https://aws.amazon.com/ram/" + }, + "id": "ram:me-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Single Sign-On", + "aws:serviceUrl": "https://aws.amazon.com/single-sign-on/" + }, + "id": "sso:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Managed Services", + "aws:serviceUrl": "https://aws.amazon.com/managed-services/" + }, + "id": "managedservices:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT Things Graph", + "aws:serviceUrl": "https://aws.amazon.com/iot-things-graph/" + }, + "id": "iotthingsgraph:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IoT Things Graph", + "aws:serviceUrl": "https://aws.amazon.com/iot-things-graph/" + }, + "id": "iotthingsgraph:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT Things Graph", + "aws:serviceUrl": "https://aws.amazon.com/iot-things-graph/" + }, + "id": "iotthingsgraph:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT Things Graph", + "aws:serviceUrl": "https://aws.amazon.com/iot-things-graph/" + }, + "id": "iotthingsgraph:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT Things Graph", + "aws:serviceUrl": "https://aws.amazon.com/iot-things-graph/" + }, + "id": "iotthingsgraph:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT Things Graph", + "aws:serviceUrl": "https://aws.amazon.com/iot-things-graph/" + }, + "id": "iotthingsgraph:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Simple Queue Service (SQS)", + "aws:serviceUrl": "https://aws.amazon.com/sqs/" + }, + "id": "sqs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Compute Optimizer", + "aws:serviceUrl": "https://aws.amazon.com/compute-optimizer/" + }, + "id": "compute-optimizer:us-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS DeepComposer", + "aws:serviceUrl": "https://aws.amazon.com/deepcomposer/" + }, + "id": "deepcomposer:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon MQ", + "aws:serviceUrl": "https://aws.amazon.com/amazon-mq/" + }, + "id": "mq:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon CloudSearch", + "aws:serviceUrl": "https://aws.amazon.com/cloudsearch/" + }, + "id": "cloudsearch:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT Analytics", + "aws:serviceUrl": "https://aws.amazon.com/iot-analytics/" + }, + "id": "iotanalytics:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:eu-central-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Well-Architected Tool", + "aws:serviceUrl": "https://aws.amazon.com/well-architected-tool" + }, + "id": "wellarchitectedtool:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:eu-north-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:me-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon API Gateway", + "aws:serviceUrl": "https://aws.amazon.com/api-gateway/" + }, + "id": "apigateway:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Proton", + "aws:serviceUrl": "https://aws.amazon.com/proton/" + }, + "id": "proton:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Proton", + "aws:serviceUrl": "https://aws.amazon.com/proton/" + }, + "id": "proton:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Proton", + "aws:serviceUrl": "https://aws.amazon.com/proton/" + }, + "id": "proton:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Proton", + "aws:serviceUrl": "https://aws.amazon.com/proton/" + }, + "id": "proton:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Proton", + "aws:serviceUrl": "https://aws.amazon.com/proton/" + }, + "id": "proton:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:cn-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Step Functions", + "aws:serviceUrl": "https://aws.amazon.com/step-functions/details/" + }, + "id": "stepfunctions:us-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Braket", + "aws:serviceUrl": "https://aws.amazon.com/braket/" + }, + "id": "braket:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Braket", + "aws:serviceUrl": "https://aws.amazon.com/braket/" + }, + "id": "braket:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Braket", + "aws:serviceUrl": "https://aws.amazon.com/braket/" + }, + "id": "braket:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:cn-north-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS WAF", + "aws:serviceUrl": "https://aws.amazon.com/waf/" + }, + "id": "waf:eu-west-3" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Budgets", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-budgets/" + }, + "id": "budgets:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:us-west-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Directory Service", + "aws:serviceUrl": "https://aws.amazon.com/directoryservice/" + }, + "id": "ds:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:af-south-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Glue", + "aws:serviceUrl": "https://aws.amazon.com/glue/" + }, + "id": "glue:eu-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS PrivateLink", + "aws:serviceUrl": "https://aws.amazon.com/privatelink/" + }, + "id": "privatelink:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ap-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Outposts", + "aws:serviceUrl": "https://aws.amazon.com/outposts/" + }, + "id": "outposts:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Personalize", + "aws:serviceUrl": "https://aws.amazon.com/personalize/" + }, + "id": "personalize:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Elemental MediaLive", + "aws:serviceUrl": "https://aws.amazon.com/medialive/" + }, + "id": "medialive:eu-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS License Manager", + "aws:serviceUrl": "https://aws.amazon.com/license-manager/" + }, + "id": "license-manager:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Certificate Manager", + "aws:serviceUrl": "https://aws.amazon.com/certificate-manager/" + }, + "id": "acm:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Artifact", + "aws:serviceUrl": "https://aws.amazon.com/artifact/" + }, + "id": "artifact:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elastic Kubernetes Service (EKS)", + "aws:serviceUrl": "https://aws.amazon.com/eks" + }, + "id": "eks:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ap-east-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:us-east-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "CloudEndure Disaster Recovery", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-disaster-recovery/" + }, + "id": "cloudenduredisasterrecovery:me-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Cloud Directory", + "aws:serviceUrl": "https://aws.amazon.com/cloud-directory/" + }, + "id": "clouddirectory:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Firewall Manager", + "aws:serviceUrl": "https://aws.amazon.com/firewall-manager/" + }, + "id": "fms:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Cognito", + "aws:serviceUrl": "https://aws.amazon.com/cognito/" + }, + "id": "cognito-identity:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Data Pipeline", + "aws:serviceUrl": "https://aws.amazon.com/datapipeline/" + }, + "id": "datapipeline:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Data Pipeline", + "aws:serviceUrl": "https://aws.amazon.com/datapipeline/" + }, + "id": "datapipeline:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Data Pipeline", + "aws:serviceUrl": "https://aws.amazon.com/datapipeline/" + }, + "id": "datapipeline:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Data Pipeline", + "aws:serviceUrl": "https://aws.amazon.com/datapipeline/" + }, + "id": "datapipeline:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Data Pipeline", + "aws:serviceUrl": "https://aws.amazon.com/datapipeline/" + }, + "id": "datapipeline:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CloudFormation", + "aws:serviceUrl": "https://aws.amazon.com/cloudformation/" + }, + "id": "cloudformation:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:ca-central-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Control Tower", + "aws:serviceUrl": "https://aws.amazon.com/controltower" + }, + "id": "controltower:sa-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:eu-north-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Lumberyard", + "aws:serviceUrl": "https://aws.amazon.com/lumberyard/" + }, + "id": "lumberyard:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:us-east-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Relational Database Service (RDS)", + "aws:serviceUrl": "https://aws.amazon.com/rds/" + }, + "id": "rds:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:cn-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Kinesis Data Streams", + "aws:serviceUrl": "https://aws.amazon.com/kinesis/streams/" + }, + "id": "kinesis:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon WorkSpaces Application Manager", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/applicationmanager/" + }, + "id": "wam:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon WorkSpaces Application Manager", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/applicationmanager/" + }, + "id": "wam:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon WorkSpaces Application Manager", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/applicationmanager/" + }, + "id": "wam:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon WorkSpaces Application Manager", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/applicationmanager/" + }, + "id": "wam:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon WorkSpaces Application Manager", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/applicationmanager/" + }, + "id": "wam:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:cn-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Personal Health Dashboard", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/phd/" + }, + "id": "phd:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon FSx for NetApp ONTAP", + "aws:serviceUrl": "https://aws.amazon.com/fsx/netapp-ontap" + }, + "id": "fsx-ontap:eu-north-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:us-west-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:ca-central-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Detective", + "aws:serviceUrl": "https://aws.amazon.com/detective/" + }, + "id": "detective:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:us-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Lightsail", + "aws:serviceUrl": "https://amazonlightsail.com/" + }, + "id": "lightsail:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Managed Streaming for Apache Kafka", + "aws:serviceUrl": "https://aws.amazon.com/msk/" + }, + "id": "kafka:sa-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Managed Grafana", + "aws:serviceUrl": "https://aws.amazon.com/grafana/" + }, + "id": "grafana:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CodeArtifact", + "aws:serviceUrl": "https://aws.amazon.com/codeartifact" + }, + "id": "codeartifact:us-east-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Virtual Private Cloud (VPC)", + "aws:serviceUrl": "https://aws.amazon.com/vpc/" + }, + "id": "vpc:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT SiteWise", + "aws:serviceUrl": "https://aws.amazon.com/iot-sitewise/" + }, + "id": "iotsitewise:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:eu-north-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Direct Connect", + "aws:serviceUrl": "https://aws.amazon.com/directconnect/" + }, + "id": "directconnect:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT Core", + "aws:serviceUrl": "https://aws.amazon.com/iot/" + }, + "id": "iot:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Trusted Advisor", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/trustedadvisor/" + }, + "id": "trustedadvisor:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Chime", + "aws:serviceUrl": "https://chime.aws/" + }, + "id": "chime:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:me-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IQ", + "aws:serviceUrl": "https://aws.amazon.com/iq/" + }, + "id": "aiq:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Aurora", + "aws:serviceUrl": "https://aws.amazon.com/rds/aurora/" + }, + "id": "aurora:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "CloudEndure Migration", + "aws:serviceUrl": "https://aws.amazon.com/cloudendure-migration/" + }, + "id": "cloudenduremigration:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Resilience Hub", + "aws:serviceUrl": "https://aws.amazon.com/resilience-hub/" + }, + "id": "resiliencehub:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Comprehend", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/" + }, + "id": "comprehend:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Fargate", + "aws:serviceUrl": "https://aws.amazon.com/fargate/" + }, + "id": "fargate:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:cn-north-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic Block Store (EBS)", + "aws:serviceUrl": "https://aws.amazon.com/ebs/" + }, + "id": "ebs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Backup", + "aws:serviceUrl": "https://aws.amazon.com/backup/" + }, + "id": "backup:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elemental MediaPackage", + "aws:serviceUrl": "https://aws.amazon.com/mediapackage/" + }, + "id": "mediapackage:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:us-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Global Accelerator", + "aws:serviceUrl": "https://aws.amazon.com/global-accelerator" + }, + "id": "globalaccelerator:eu-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Snowcone", + "aws:serviceUrl": "https://aws.amazon.com/snowcone/" + }, + "id": "snowcone:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elastic Disaster Recovery (DRS)", + "aws:serviceUrl": "https://aws.amazon.com/disaster-recovery/" + }, + "id": "drs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Kendra", + "aws:serviceUrl": "https://aws.amazon.com/kendra/" + }, + "id": "kendra:us-west-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Device Farm", + "aws:serviceUrl": "https://aws.amazon.com/device-farm/" + }, + "id": "devicefarm:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon EventBridge", + "aws:serviceUrl": "https://aws.amazon.com/eventbridge/" + }, + "id": "eventbridge:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Lex", + "aws:serviceUrl": "https://aws.amazon.com/lex/" + }, + "id": "lex-runtime:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon AppFlow", + "aws:serviceUrl": "https://aws.amazon.com/appflow/" + }, + "id": "appflow:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:eu-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS X-Ray", + "aws:serviceUrl": "https://aws.amazon.com/xray/" + }, + "id": "xray:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Textract", + "aws:serviceUrl": "https://aws.amazon.com/textract" + }, + "id": "textract:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CloudHSM", + "aws:serviceUrl": "https://aws.amazon.com/cloudhsm/" + }, + "id": "cloudhsmv2:eu-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:af-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:ca-central-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Neptune", + "aws:serviceUrl": "https://aws.amazon.com/neptune/" + }, + "id": "neptune:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Fault Injection Simulator", + "aws:serviceUrl": "https://aws.amazon.com/fis/" + }, + "id": "fis:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Amplify", + "aws:serviceUrl": "https://aws.amazon.com/amplify/" + }, + "id": "amplify:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Audit Manager", + "aws:serviceUrl": "https://aws.amazon.com/audit-manager/" + }, + "id": "auditmanager:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon WorkDocs", + "aws:serviceUrl": "https://aws.amazon.com/workdocs/" + }, + "id": "workdocs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon WorkDocs", + "aws:serviceUrl": "https://aws.amazon.com/workdocs/" + }, + "id": "workdocs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon WorkDocs", + "aws:serviceUrl": "https://aws.amazon.com/workdocs/" + }, + "id": "workdocs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon WorkDocs", + "aws:serviceUrl": "https://aws.amazon.com/workdocs/" + }, + "id": "workdocs:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon WorkDocs", + "aws:serviceUrl": "https://aws.amazon.com/workdocs/" + }, + "id": "workdocs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon WorkDocs", + "aws:serviceUrl": "https://aws.amazon.com/workdocs/" + }, + "id": "workdocs:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:us-west-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Secrets Manager", + "aws:serviceUrl": "https://aws.amazon.com/secrets-manager/" + }, + "id": "secretsmanager:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:sa-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Simple Workflow Service (SWF)", + "aws:serviceUrl": "https://aws.amazon.com/swf/" + }, + "id": "swf:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Augmented AI (A2I)", + "aws:serviceUrl": "https://aws.amazon.com/augmented-ai/" + }, + "id": "augmentedairuntime:ap-south-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ca-central-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Marketplace", + "aws:serviceUrl": "https://aws.amazon.com/mp/" + }, + "id": "marketplace:eu-west-3" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Batch", + "aws:serviceUrl": "https://aws.amazon.com/batch/" + }, + "id": "batch:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:ap-east-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic MapReduce (EMR)", + "aws:serviceUrl": "https://aws.amazon.com/emr/" + }, + "id": "emr:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:eu-central-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Transfer Family", + "aws:serviceUrl": "https://aws.amazon.com/aws-transfer-family/" + }, + "id": "transfer:eu-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:us-west-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Simple Email Service (SES)", + "aws:serviceUrl": "https://aws.amazon.com/ses/" + }, + "id": "ses:ca-central-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CodePipeline", + "aws:serviceUrl": "https://aws.amazon.com/codepipeline/" + }, + "id": "codepipeline:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:us-west-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:eu-north-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/autoscaling/" + }, + "id": "application-autoscaling:us-west-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Timestream", + "aws:serviceUrl": "https://aws.amazon.com/timestream" + }, + "id": "timestream:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Timestream", + "aws:serviceUrl": "https://aws.amazon.com/timestream" + }, + "id": "timestream:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Timestream", + "aws:serviceUrl": "https://aws.amazon.com/timestream" + }, + "id": "timestream:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Timestream", + "aws:serviceUrl": "https://aws.amazon.com/timestream" + }, + "id": "timestream:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Timestream", + "aws:serviceUrl": "https://aws.amazon.com/timestream" + }, + "id": "timestream:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Application Migration Service (MGN)", + "aws:serviceUrl": "https://aws.amazon.com/application-migration-service/" + }, + "id": "mgn:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Migration Hub", + "aws:serviceUrl": "https://aws.amazon.com/migration-hub/" + }, + "id": "mgh:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Migration Hub", + "aws:serviceUrl": "https://aws.amazon.com/migration-hub/" + }, + "id": "mgh:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Migration Hub", + "aws:serviceUrl": "https://aws.amazon.com/migration-hub/" + }, + "id": "mgh:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Migration Hub", + "aws:serviceUrl": "https://aws.amazon.com/migration-hub/" + }, + "id": "mgh:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Migration Hub", + "aws:serviceUrl": "https://aws.amazon.com/migration-hub/" + }, + "id": "mgh:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Migration Hub", + "aws:serviceUrl": "https://aws.amazon.com/migration-hub/" + }, + "id": "mgh:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Migration Hub", + "aws:serviceUrl": "https://aws.amazon.com/migration-hub/" + }, + "id": "mgh:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:us-west-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Transcribe Medical", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/medical/" + }, + "id": "transcribemedical:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS OpsWorks Stacks", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/stacks/" + }, + "id": "opsworks:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon CloudWatch", + "aws:serviceUrl": "https://aws.amazon.com/cloudwatch/" + }, + "id": "cloudwatch:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS OpsWorks for Chef Automate", + "aws:serviceUrl": "https://aws.amazon.com/opsworks/chefautomate/" + }, + "id": "opsworkschefautomate:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Location Service", + "aws:serviceUrl": "https://aws.amazon.com/location" + }, + "id": "amazonlocationservice:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CodeStar", + "aws:serviceUrl": "https://aws.amazon.com/codestar/" + }, + "id": "codestar:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:us-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Cloud9", + "aws:serviceUrl": "https://aws.amazon.com/cloud9/" + }, + "id": "cloud9:eu-west-3" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Lake Formation", + "aws:serviceUrl": "https://aws.amazon.com/lake-formation/" + }, + "id": "lakeformation:sa-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon WorkSpaces", + "aws:serviceUrl": "https://aws.amazon.com/workspaces/" + }, + "id": "workspaces:eu-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Managed Blockchain", + "aws:serviceUrl": "https://aws.amazon.com/managed-blockchain/" + }, + "id": "managedblockchain:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Managed Blockchain", + "aws:serviceUrl": "https://aws.amazon.com/managed-blockchain/" + }, + "id": "managedblockchain:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Managed Blockchain", + "aws:serviceUrl": "https://aws.amazon.com/managed-blockchain/" + }, + "id": "managedblockchain:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Managed Blockchain", + "aws:serviceUrl": "https://aws.amazon.com/managed-blockchain/" + }, + "id": "managedblockchain:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Managed Blockchain", + "aws:serviceUrl": "https://aws.amazon.com/managed-blockchain/" + }, + "id": "managedblockchain:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Managed Blockchain", + "aws:serviceUrl": "https://aws.amazon.com/managed-blockchain/" + }, + "id": "managedblockchain:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ap-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Snowball", + "aws:serviceUrl": "https://aws.amazon.com/snowball/" + }, + "id": "snowball:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Database Migration Service", + "aws:serviceUrl": "https://aws.amazon.com/dms/" + }, + "id": "dms:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:ca-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Serverless Application Repository", + "aws:serviceUrl": "https://aws.amazon.com/serverless/serverlessrepo/" + }, + "id": "serverlessrepo:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS RoboMaker", + "aws:serviceUrl": "https://aws.amazon.com/robomaker/" + }, + "id": "robomaker:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Pinpoint", + "aws:serviceUrl": "https://aws.amazon.com/pinpoint/" + }, + "id": "pinpoint:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elastic Beanstalk", + "aws:serviceUrl": "https://aws.amazon.com/elasticbeanstalk/" + }, + "id": "elasticbeanstalk:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:af-south-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:cn-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Transcribe", + "aws:serviceUrl": "https://aws.amazon.com/transcribe/" + }, + "id": "transcribe:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:ap-east-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Organizations", + "aws:serviceUrl": "https://aws.amazon.com/organizations" + }, + "id": "organizations:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:us-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS IoT Device Management", + "aws:serviceUrl": "https://aws.amazon.com/iot-device-management/" + }, + "id": "iotdevicemanagement:sa-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:us-east-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:us-west-2" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Macie", + "aws:serviceUrl": "https://aws.amazon.com/macie/" + }, + "id": "macie:eu-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Managed Service for Prometheus", + "aws:serviceUrl": "https://aws.amazon.com/prometheus/" + }, + "id": "aps:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:me-south-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon ElastiCache", + "aws:serviceUrl": "https://aws.amazon.com/elasticache/" + }, + "id": "elasticache:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Keyspaces (for Apache Cassandra)", + "aws:serviceUrl": "https://aws.amazon.com/keyspaces/" + }, + "id": "mcs:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:us-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Connect", + "aws:serviceUrl": "https://aws.amazon.com/connect/" + }, + "id": "connect:eu-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Key Management Service", + "aws:serviceUrl": "https://aws.amazon.com/kms/" + }, + "id": "kms:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Forecast", + "aws:serviceUrl": "https://aws.amazon.com/forecast/" + }, + "id": "forecast:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:us-west-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Support", + "aws:serviceUrl": "https://aws.amazon.com/premiumsupport/" + }, + "id": "support:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:us-west-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Simple Notification Service (SNS)", + "aws:serviceUrl": "https://aws.amazon.com/sns/" + }, + "id": "sns:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS VPN", + "aws:serviceUrl": "https://aws.amazon.com/vpn/" + }, + "id": "vpn:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Network Firewall", + "aws:serviceUrl": "https://aws.amazon.com/network-firewall/" + }, + "id": "network-firewall:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS IoT TwinMaker", + "aws:serviceUrl": "https://aws.amazon.com/iot-twinmaker/" + }, + "id": "iottwinmaker:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS IoT TwinMaker", + "aws:serviceUrl": "https://aws.amazon.com/iot-twinmaker/" + }, + "id": "iottwinmaker:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS IoT TwinMaker", + "aws:serviceUrl": "https://aws.amazon.com/iot-twinmaker/" + }, + "id": "iottwinmaker:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS IoT TwinMaker", + "aws:serviceUrl": "https://aws.amazon.com/iot-twinmaker/" + }, + "id": "iottwinmaker:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS IoT TwinMaker", + "aws:serviceUrl": "https://aws.amazon.com/iot-twinmaker/" + }, + "id": "iottwinmaker:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS IoT TwinMaker", + "aws:serviceUrl": "https://aws.amazon.com/iot-twinmaker/" + }, + "id": "iottwinmaker:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Lookout for Vision", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-vision/" + }, + "id": "lookoutvision:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Lookout for Vision", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-vision/" + }, + "id": "lookoutvision:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Lookout for Vision", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-vision/" + }, + "id": "lookoutvision:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Lookout for Vision", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-vision/" + }, + "id": "lookoutvision:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Lookout for Vision", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-vision/" + }, + "id": "lookoutvision:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Lookout for Vision", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-vision/" + }, + "id": "lookoutvision:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Lookout for Vision", + "aws:serviceUrl": "https://aws.amazon.com/lookout-for-vision/" + }, + "id": "lookoutvision:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Storage Gateway", + "aws:serviceUrl": "https://aws.amazon.com/storagegateway/" + }, + "id": "storagegateway:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon EC2 Auto Scaling", + "aws:serviceUrl": "https://aws.amazon.com/ec2/autoscaling/" + }, + "id": "autoscaling:us-west-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:eu-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Service Catalog", + "aws:serviceUrl": "https://aws.amazon.com/servicecatalog/" + }, + "id": "servicecatalog:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:eu-west-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:ap-east-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon FSx for Lustre", + "aws:serviceUrl": "https://aws.amazon.com/fsx/lustre/" + }, + "id": "fsx-lustre:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:eu-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:us-west-2" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS AppSync", + "aws:serviceUrl": "https://aws.amazon.com/appsync/" + }, + "id": "appsync:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Snowmobile", + "aws:serviceUrl": "https://aws.amazon.com/snowmobile/" + }, + "id": "snowmobile:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Snowmobile", + "aws:serviceUrl": "https://aws.amazon.com/snowmobile/" + }, + "id": "snowmobile:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Snowmobile", + "aws:serviceUrl": "https://aws.amazon.com/snowmobile/" + }, + "id": "snowmobile:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Snowmobile", + "aws:serviceUrl": "https://aws.amazon.com/snowmobile/" + }, + "id": "snowmobile:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Snowmobile", + "aws:serviceUrl": "https://aws.amazon.com/snowmobile/" + }, + "id": "snowmobile:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Snowmobile", + "aws:serviceUrl": "https://aws.amazon.com/snowmobile/" + }, + "id": "snowmobile:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elemental MediaTailor", + "aws:serviceUrl": "https://aws.amazon.com/mediatailor/" + }, + "id": "mediatailor:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Elemental MediaTailor", + "aws:serviceUrl": "https://aws.amazon.com/mediatailor/" + }, + "id": "mediatailor:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elemental MediaTailor", + "aws:serviceUrl": "https://aws.amazon.com/mediatailor/" + }, + "id": "mediatailor:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elemental MediaTailor", + "aws:serviceUrl": "https://aws.amazon.com/mediatailor/" + }, + "id": "mediatailor:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elemental MediaTailor", + "aws:serviceUrl": "https://aws.amazon.com/mediatailor/" + }, + "id": "mediatailor:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elemental MediaTailor", + "aws:serviceUrl": "https://aws.amazon.com/mediatailor/" + }, + "id": "mediatailor:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elemental MediaTailor", + "aws:serviceUrl": "https://aws.amazon.com/mediatailor/" + }, + "id": "mediatailor:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:sa-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic Container Registry (ECR)", + "aws:serviceUrl": "https://aws.amazon.com/ecr/" + }, + "id": "ecr:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:ca-central-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Elastic Load Balancing", + "aws:serviceUrl": "https://aws.amazon.com/elasticloadbalancing/" + }, + "id": "elb:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:eu-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CodeCommit", + "aws:serviceUrl": "https://aws.amazon.com/codecommit/" + }, + "id": "codecommit:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:cn-north-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:us-east-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:af-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Simple Storage Service (S3)", + "aws:serviceUrl": "https://aws.amazon.com/s3/" + }, + "id": "s3:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:sa-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:eu-north-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic File System (EFS)", + "aws:serviceUrl": "https://aws.amazon.com/efs/" + }, + "id": "efs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:eu-west-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:ap-south-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Server Migration Service (SMS)", + "aws:serviceUrl": "https://aws.amazon.com/server-migration-service/" + }, + "id": "sms:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS DeepRacer", + "aws:serviceUrl": "https://aws.amazon.com/deepracer/" + }, + "id": "deepracer:us-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon GameLift", + "aws:serviceUrl": "https://aws.amazon.com/gamelift/" + }, + "id": "gamelift:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Alexa for Business", + "aws:serviceUrl": "https://aws.amazon.com/alexaforbusiness/" + }, + "id": "alexaforbusiness:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon CodeGuru", + "aws:serviceUrl": "https://aws.amazon.com/codeguru/" + }, + "id": "codeguruprofiler:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:us-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Quantum Ledger Database (QLDB)", + "aws:serviceUrl": "https://aws.amazon.com/qldb/" + }, + "id": "qldb:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Elemental MediaConvert", + "aws:serviceUrl": "https://aws.amazon.com/mediaconvert/" + }, + "id": "mediaconvert:us-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon WorkMail", + "aws:serviceUrl": "https://aws.amazon.com/workmail/" + }, + "id": "workmail:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon WorkMail", + "aws:serviceUrl": "https://aws.amazon.com/workmail/" + }, + "id": "workmail:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon WorkMail", + "aws:serviceUrl": "https://aws.amazon.com/workmail/" + }, + "id": "workmail:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Security Hub", + "aws:serviceUrl": "https://aws.amazon.com/security-hub/" + }, + "id": "securityhub:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon FSx for OpenZFS", + "aws:serviceUrl": "https://aws.amazon.com/fsx/openzfs" + }, + "id": "fsx-openzfs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Comprehend Medical", + "aws:serviceUrl": "https://aws.amazon.com/comprehend/medical/" + }, + "id": "comprehendmedical:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:me-south-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:af-south-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon DynamoDB", + "aws:serviceUrl": "https://aws.amazon.com/dynamodb/" + }, + "id": "dynamodb:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:cn-north-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon DocumentDB (with MongoDB compatibility)", + "aws:serviceUrl": "https://aws.amazon.com/documentdb/" + }, + "id": "docdb:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Elemental MediaConnect", + "aws:serviceUrl": "https://aws.amazon.com/mediaconnect" + }, + "id": "mediaconnect:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS DeepLens", + "aws:serviceUrl": "https://aws.amazon.com/deeplens/" + }, + "id": "deeplens:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS DeepLens", + "aws:serviceUrl": "https://aws.amazon.com/deeplens/" + }, + "id": "deeplens:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS DeepLens", + "aws:serviceUrl": "https://aws.amazon.com/deeplens/" + }, + "id": "deeplens:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:eu-south-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Config", + "aws:serviceUrl": "https://aws.amazon.com/config/" + }, + "id": "config:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-east-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:me-south-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon CloudFront", + "aws:serviceUrl": "https://aws.amazon.com/cloudfront/" + }, + "id": "cloudfront:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:ap-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Rekognition", + "aws:serviceUrl": "https://aws.amazon.com/rekognition/" + }, + "id": "rekognition:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:eu-central-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS Lambda", + "aws:serviceUrl": "https://aws.amazon.com/lambda/" + }, + "id": "lambda:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:eu-west-2" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:me-south-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "FreeRTOS", + "aws:serviceUrl": "https://aws.amazon.com/freertos/" + }, + "id": "freertosota:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:us-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:us-east-2" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:us-west-2" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS App Mesh", + "aws:serviceUrl": "https://aws.amazon.com/app-mesh/" + }, + "id": "appmesh:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Cost and Usage Report", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-cost-and-usage-reporting/" + }, + "id": "cur:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Cost and Usage Report", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-cost-and-usage-reporting/" + }, + "id": "cur:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:eu-west-2" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:eu-west-3" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:eu-west-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:us-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Sumerian", + "aws:serviceUrl": "https://aws.amazon.com/sumerian/" + }, + "id": "sumerian:us-east-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Elemental MediaStore", + "aws:serviceUrl": "https://aws.amazon.com/mediastore/" + }, + "id": "mediastore:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ap-south-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:eu-west-2" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:us-west-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ca-central-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon FSx for Windows File Server", + "aws:serviceUrl": "https://aws.amazon.com/fsx/windows/" + }, + "id": "fsx-windows:me-south-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS Application Discovery Service", + "aws:serviceUrl": "https://aws.amazon.com/application-discovery/" + }, + "id": "discovery:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS Application Discovery Service", + "aws:serviceUrl": "https://aws.amazon.com/application-discovery/" + }, + "id": "discovery:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS Application Discovery Service", + "aws:serviceUrl": "https://aws.amazon.com/application-discovery/" + }, + "id": "discovery:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS Application Discovery Service", + "aws:serviceUrl": "https://aws.amazon.com/application-discovery/" + }, + "id": "discovery:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS Application Discovery Service", + "aws:serviceUrl": "https://aws.amazon.com/application-discovery/" + }, + "id": "discovery:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Application Discovery Service", + "aws:serviceUrl": "https://aws.amazon.com/application-discovery/" + }, + "id": "discovery:us-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS Application Discovery Service", + "aws:serviceUrl": "https://aws.amazon.com/application-discovery/" + }, + "id": "discovery:us-west-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS Cost Explorer", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-cost-explorer/" + }, + "id": "costexplorer:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS Cost Explorer", + "aws:serviceUrl": "https://aws.amazon.com/aws-cost-management/aws-cost-explorer/" + }, + "id": "costexplorer:us-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-3", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-southeast-3" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:cn-north-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:eu-west-3" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:us-gov-west-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:af-south-1" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:eu-central-1" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:me-south-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "Amazon Elastic Container Service (ECS)", + "aws:serviceUrl": "https://aws.amazon.com/ecs/" + }, + "id": "ecs:us-west-2" + }, + { + "attributes": { + "aws:region": "ap-northeast-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ap-northeast-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-2", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ap-northeast-2" + }, + { + "attributes": { + "aws:region": "ap-south-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ap-south-1" + }, + { + "attributes": { + "aws:region": "ap-southeast-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ap-southeast-1" + }, + { + "attributes": { + "aws:region": "eu-central-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:eu-central-1" + }, + { + "attributes": { + "aws:region": "eu-south-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:eu-south-1" + }, + { + "attributes": { + "aws:region": "eu-west-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:eu-west-1" + }, + { + "attributes": { + "aws:region": "eu-west-3", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:eu-west-3" + }, + { + "attributes": { + "aws:region": "me-south-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:me-south-1" + }, + { + "attributes": { + "aws:region": "us-west-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:us-west-1" + }, + { + "attributes": { + "aws:region": "af-south-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:af-south-1" + }, + { + "attributes": { + "aws:region": "ap-east-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ap-east-1" + }, + { + "attributes": { + "aws:region": "ap-northeast-3", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ap-northeast-3" + }, + { + "attributes": { + "aws:region": "ap-southeast-2", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ap-southeast-2" + }, + { + "attributes": { + "aws:region": "cn-northwest-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:cn-northwest-1" + }, + { + "attributes": { + "aws:region": "eu-north-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:eu-north-1" + }, + { + "attributes": { + "aws:region": "eu-west-2", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:eu-west-2" + }, + { + "attributes": { + "aws:region": "us-east-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:us-east-1" + }, + { + "attributes": { + "aws:region": "us-gov-east-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:us-gov-east-1" + }, + { + "attributes": { + "aws:region": "us-west-2", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:us-west-2" + }, + { + "attributes": { + "aws:region": "ca-central-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:ca-central-1" + }, + { + "attributes": { + "aws:region": "cn-north-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:cn-north-1" + }, + { + "attributes": { + "aws:region": "sa-east-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:sa-east-1" + }, + { + "attributes": { + "aws:region": "us-east-2", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:us-east-2" + }, + { + "attributes": { + "aws:region": "us-gov-west-1", + "aws:serviceName": "AWS CodeBuild", + "aws:serviceUrl": "https://aws.amazon.com/codebuild/" + }, + "id": "codebuild:us-gov-west-1" + } + ] +} \ No newline at end of file diff --git a/providers/aws/services/ec2/__init__.py b/providers/aws/services/ec2/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/__init__.py b/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/ec2_ebs_snapshots_encrypted.metadata.json b/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/ec2_ebs_snapshots_encrypted.metadata.json new file mode 100644 index 00000000..c03f26b1 --- /dev/null +++ b/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/ec2_ebs_snapshots_encrypted.metadata.json @@ -0,0 +1,58 @@ +{ + "Categories": [ + "cat1", + "cat2" + ], + "CheckAlias": "extra740", + "CheckID": "ec2_ebs_snapshots_encrypted", + "CheckName": "ec2_ebs_snapshots_encrypted", + "CheckTitle": "Check if EBS snapshots are encrypted", + "CheckType": "Data Protection", + "Compliance": [ + { + "Control": [ + "4.4" + ], + "Framework": "CIS-AWS", + "Group": [ + "level1", + "level2" + ], + "Version": "1.4" + } + ], + "DependsOn": [ + "othercheck1", + "othercheck2" + ], + "Description": "If Security groups are not properly configured the attack surface is increased.", + "Notes": "additional information", + "Provider": "aws", + "RelatedTo": [ + "othercheck3", + "othercheck4" + ], + "RelatedUrl": "https://serviceofficialsiteorpageforthissubject", + "Remediation": { + "Code": { + "NativeIaC": "code or URL to the code location.", + "Terraform": "code or URL to the code location.", + "cli": "cli command or URL to the cli command location.", + "other": "cli command or URL to the cli command location." + }, + "Recommendation": { + "Text": "Run sudo yum update and cross your fingers and toes.", + "Url": "https://myfp.com/recommendations/dangerous_things_and_how_to_fix_them.html" + } + }, + "ResourceIdTemplate": "arn:partition:service:region:account-id:resource-id", + "ResourceType": "AwsIamAccessAnalyzer", + "Risk": "Risk associated.", + "ServiceName": "ec2", + "Severity": "low", + "SubServiceName": "accessanalyzer", + "Tags": { + "Tag1Key": "value", + "Tag2Key": "value" + } +} diff --git a/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/ec2_ebs_snapshots_encrypted.py b/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/ec2_ebs_snapshots_encrypted.py new file mode 100644 index 00000000..4977d45e --- /dev/null +++ b/providers/aws/services/ec2/ec2_ebs_snapshots_encrypted/ec2_ebs_snapshots_encrypted.py @@ -0,0 +1,35 @@ +from lib.check.check import Check, Check_Report +from providers.aws.services.ec2.ec2_service import ec2_client + + +class ec2_ebs_snapshots_encrypted(Check): + def execute(self): + findings = [] + for regional_client in ec2_client.regional_clients: + region = regional_client.region + if hasattr(regional_client, "snapshots"): + if regional_client.snapshots: + for snapshot in regional_client.snapshots: + if snapshot["Encrypted"]: + report = Check_Report() + report.status = "PASS" + report.result_extended = ( + f"EBS Snapshot {snapshot['SnapshotId']} is encrypted" + ) + report.region = region + else: + report = Check_Report() + report.status = "FAIL" + report.result_extended = ( + f"EBS Snapshot {snapshot['SnapshotId']} is unencrypted" + ) + report.region = region + else: + report = Check_Report() + report.status = "PASS" + report.result_extended = "There are no EC2 EBS snapshots" + report.region = region + + findings.append(report) + + return findings diff --git a/providers/aws/services/ec2/ec2_service.py b/providers/aws/services/ec2/ec2_service.py new file mode 100644 index 00000000..465f4c31 --- /dev/null +++ b/providers/aws/services/ec2/ec2_service.py @@ -0,0 +1,117 @@ +import json +import threading +import urllib.request + +from config.config import aws_services_json_file, aws_services_json_url +from lib.logger import logger +from lib.utils.utils import open_file, parse_json_file +from providers.aws.aws_provider import ( + audited_account, + audited_partition, + audited_regions, + aws_session, +) + + +################## EC2 +class EC2: + def __init__(self, aws_session, audited_regions): + self.service = "ec2" + self.aws_session = aws_session + self.regional_clients = self.__generate_regional_clients__( + self.service, audited_regions + ) + self.__threading_call__(self.__describe_snapshots__) + + def __get_clients__(self): + return self.clients + + def __get_session__(self): + return self.aws_session + + def __generate_regional_clients__(self, service, audited_regions): + regional_clients = [] + try: # Try to get the list online + with urllib.request.urlopen(aws_services_json_url) as url: + data = json.loads(url.read().decode()) + except: + # Get the list locally + f = open_file(aws_services_json_file) + data = parse_json_file(f) + + for att in data["prices"]: + if audited_regions: # Check for input aws audited_regions + if ( + service in att["id"].split(":")[0] + and att["attributes"]["aws:region"] in audited_regions + ): # Check if service has this region + region = att["attributes"]["aws:region"] + regional_client = aws_session.client(service, region_name=region) + regional_client.region = region + regional_clients.append(regional_client) + else: + if audited_partition in "aws": + if ( + service in att["id"].split(":")[0] + and "gov" not in att["attributes"]["aws:region"] + and "cn" not in att["attributes"]["aws:region"] + ): + region = att["attributes"]["aws:region"] + regional_client = aws_session.client( + service, region_name=region + ) + regional_client.region = region + regional_clients.append(regional_client) + elif audited_partition in "cn": + if ( + service in att["id"].split(":")[0] + and "cn" in att["attributes"]["aws:region"] + ): + region = att["attributes"]["aws:region"] + regional_client = aws_session.client( + service, region_name=region + ) + regional_client.region = region + regional_clients.append(regional_client) + elif audited_partition in "gov": + if ( + service in att["id"].split(":")[0] + and "gov" in att["attributes"]["aws:region"] + ): + region = att["attributes"]["aws:region"] + regional_client = aws_session.client( + service, region_name=region + ) + regional_client.region = region + regional_clients.append(regional_client) + + return regional_clients + + def __threading_call__(self, call): + threads = [] + for regional_client in self.regional_clients: + threads.append(threading.Thread(target=call, args=(regional_client,))) + for t in threads: + t.start() + for t in threads: + t.join() + + def __describe_snapshots__(self, regional_client): + logger.info("EC2 - Describing Snapshots...") + try: + describe_snapshots_paginator = regional_client.get_paginator( + "describe_snapshots" + ) + snapshots = [] + for page in describe_snapshots_paginator.paginate( + OwnerIds=[audited_account] + ): + for snapshot in page["Snapshots"]: + snapshots.append(snapshot) + except Exception as error: + logger.error(f"{error.__class__.__name__} -- {error}") + else: + regional_client.snapshots = snapshots + + +ec2_client = EC2(aws_session, audited_regions) diff --git a/providers/aws/services/iam/iam_disable_30_days_credentials/iam_disable_30_days_credentials.py b/providers/aws/services/iam/iam_disable_30_days_credentials/iam_disable_30_days_credentials.py index 2d62c088..c0e3a1fb 100644 --- a/providers/aws/services/iam/iam_disable_30_days_credentials/iam_disable_30_days_credentials.py +++ b/providers/aws/services/iam/iam_disable_30_days_credentials/iam_disable_30_days_credentials.py @@ -22,18 +22,18 @@ class iam_disable_30_days_credentials(Check): ) if time_since_insertion.days > maximum_expiration_days: report.status = "FAIL" - report.result_extended = f"User {user['UserName']} has not logged into the console in the past 90 days" + report.result_extended = f"User {user['UserName']} has not logged into the console in the past 30 days" report.region = "us-east-1" else: report.status = "PASS" - report.result_extended = f"User {user['UserName']} has logged into the console in the past 90 days" + report.result_extended = f"User {user['UserName']} has logged into the console in the past 30 days" report.region = "us-east-1" except KeyError: pass else: report.status = "PASS" report.result_extended = ( - f"User {user['UserName']} has not console password" + f"User {user['UserName']} has not a console password or is unused." ) report.region = "us-east-1" @@ -46,4 +46,4 @@ class iam_disable_30_days_credentials(Check): report.region = "us-east-1" findings.append(report) - return findings + return findings \ No newline at end of file diff --git a/providers/aws/services/iam/iam_disable_90_days_credentials/iam_disable_90_days_credentials.py b/providers/aws/services/iam/iam_disable_90_days_credentials/iam_disable_90_days_credentials.py index afd79e97..cf18ed67 100644 --- a/providers/aws/services/iam/iam_disable_90_days_credentials/iam_disable_90_days_credentials.py +++ b/providers/aws/services/iam/iam_disable_90_days_credentials/iam_disable_90_days_credentials.py @@ -7,14 +7,13 @@ maximum_expiration_days = 90 class iam_disable_90_days_credentials(Check): - def execute(self): + def execute(self) -> Check_Report: findings = [] - report = Check_Report - response = iam_client.users + if response: for user in response: - report = Check_Report + report = Check_Report() if "PasswordLastUsed" in user and user["PasswordLastUsed"] != "": try: time_since_insertion = ( @@ -34,13 +33,16 @@ class iam_disable_90_days_credentials(Check): else: report.status = "PASS" report.result_extended = ( - f"User {user['UserName']} has not console password" + f"User {user['UserName']} has not a console password or is unused." ) report.region = "us-east-1" + + # Append report findings.append(report) else: + report = Check_Report() report.status = "PASS" report.result_extended = "There is no IAM users" report.region = "us-east-1" - return findings + return findings \ No newline at end of file diff --git a/providers/aws/services/iam/iam_service.py b/providers/aws/services/iam/iam_service.py index 1b698ce1..af20bcc8 100644 --- a/providers/aws/services/iam/iam_service.py +++ b/providers/aws/services/iam/iam_service.py @@ -23,13 +23,8 @@ class IAM: def __get_roles__(self): try: get_roles_paginator = self.client.get_paginator("list_roles") - except botocore.exceptions.ClientError as error: - logger.error( - f"{error.response['Error']['Code']} -- {error.response['Error']['Message']}" - ) except Exception as error: - logger.critical(f"{error.__class__.__name__} -- {error}") - quit() + logger.error(f"{error.__class__.__name__} -- {error}") else: roles = [] for page in get_roles_paginator.paginate(): @@ -43,13 +38,8 @@ class IAM: while not report_is_completed: try: report_status = self.client.generate_credential_report() - except botocore.exceptions.ClientError as error: - logger.error( - f"{error.response['Error']['Code']} -- {error.response['Error']['Message']}" - ) except Exception as error: - logger.critical(f"{error.__class__.__name__} -- {error}") - quit() + logger.error(f"{error.__class__.__name__} -- {error}") else: if report_status["State"] == "COMPLETE": report_is_completed = True @@ -59,13 +49,8 @@ class IAM: def __get_groups__(self): try: get_groups_paginator = self.client.get_paginator("list_groups") - except botocore.exceptions.ClientError as error: - logger.error( - f"{error.response['Error']['Code']} -- {error.response['Error']['Message']}" - ) except Exception as error: - logger.critical(f"{error.__class__.__name__} -- {error}") - quit() + logger.error(f"{error.__class__.__name__} -- {error}") else: groups = [] for page in get_groups_paginator.paginate(): @@ -79,13 +64,8 @@ class IAM: get_customer_managed_policies_paginator = self.client.get_paginator( "list_policies" ) - except botocore.exceptions.ClientError as error: - logger.error( - f"{error.response['Error']['Code']} -- {error.response['Error']['Message']}" - ) except Exception as error: - logger.critical(f"{error.__class__.__name__} -- {error}") - quit() + logger.error(f"{error.__class__.__name__} -- {error}") else: customer_managed_policies = [] for page in get_customer_managed_policies_paginator.paginate(Scope="Local"): @@ -97,13 +77,8 @@ class IAM: def __get_users__(self): try: get_users_paginator = self.client.get_paginator("list_users") - except botocore.exceptions.ClientError as error: - logger.error( - f"{error.response['Error']['Code']} -- {error.response['Error']['Message']}" - ) except Exception as error: - logger.critical(f"{error.__class__.__name__} -- {error}") - quit() + logger.error(f"{error.__class__.__name__} -- {error}") else: users = [] for page in get_users_paginator.paginate(): diff --git a/prowler.py b/prowler.py index 4a04251b..06694b54 100644 --- a/prowler.py +++ b/prowler.py @@ -51,14 +51,7 @@ if __name__ == "__main__": "--role", nargs="?", default=None, - help="Role name to be assumed in account passed with -A", - ) - parser.add_argument( - "-A", - "--account", - nargs="?", - default=None, - help="AWS account id where the role passed by -R is assumed", + help="ARN of the role to be assumed", ) parser.add_argument( "-T", @@ -75,6 +68,12 @@ if __name__ == "__main__": default=None, help="External ID to be passed when assuming role", ) + parser.add_argument( + "-f", + "--filter-region", + nargs="+", + help="AWS region names to run Prowler against", + ) # Parse Arguments args = parser.parse_args() @@ -84,38 +83,19 @@ if __name__ == "__main__": services = args.services groups = args.groups checks_file = args.checks_file - + + # Set Logger + logger.setLevel(logging_levels.get(args.log_level)) + # Role assumption input options tests - if args.role or args.account: - if not args.account: - logger.critical( - "It is needed to input an Account Id to assume the role (-A option) when an IAM Role is provided with -R" - ) - quit() - elif not args.role: - logger.critical( - "It is needed to input an IAM Role name (-R option) when an Account Id is provided with -A" - ) - quit() if args.session_duration not in range(900, 43200): logger.critical("Value for -T option must be between 900 and 43200") quit() if args.session_duration != 3600 or args.external_id: - if not args.account or not args.role: - logger.critical("To use -I/-T options both -A and -R options are needed") + if not args.role: + logger.critical("To use -I/-T options -R option is needed") quit() - session_input = Input_Data( - profile=args.profile, - role_name=args.role, - account_to_assume=args.account, - session_duration=args.session_duration, - external_id=args.external_id, - ) - - # Set Logger - logger.setLevel(logging_levels.get(args.log_level)) - if args.version: print_version() quit() @@ -124,6 +104,14 @@ if __name__ == "__main__": print_banner() # Setting session + session_input = Input_Data( + profile=args.profile, + role_arn=args.role, + session_duration=args.session_duration, + external_id=args.external_id, + regions=args.filter_region, + ) + provider_set_session(session_input) # Load checks to execute