Questions tagged [aws-regions]

Amazon Web Services (AWS) cloud services are provided in different named geographic locations called "regions". Different regions often require different configurations and feature slightly different services.

87 questions
2
votes
1 answer

How to disable a region?

I don't want letting people to use AWS services in region they should not use. Can I disable regions entirely for an Organization? I see here "You cannot disable a Region that is enabled by default."…
BntMrx
  • 2,187
  • 3
  • 18
  • 29
2
votes
1 answer

Can I migrate AWS elastic IP from a region to another region?

Currently I am having t2-micro instance in Frankfurt(eu-ceentral-1). Now I want to migrate from this region to another i.e. Frankfurt-Mumbai. For that I am using AMI and Snapshot but it needs to create new instance which will use new elastic IP but…
2
votes
0 answers

Copy AWS Prefix List from one region to other regions

TL;DR: Copy AWS Prefix List (PL) from one region to other regions and when main PL is updated, update all copies of that list. Long Story: Hi, I want to publish my site in multiple regions using AWS and plan on using Cloudflare for Geo based load…
2
votes
2 answers

CloudFront origin for specific region content

I have created four S3 buckets, each with a simple index.html file and each with unique content. I have created a CloudFront distribution and assigned it four origins, one for each of the four buckets. Each origin has an Origin Access Identity and…
Matt W
  • 11,753
  • 25
  • 118
  • 215
2
votes
0 answers

Ingesting Dataset into QuickSight via Lambda Error: failed to satisfy constraint: Specified resource is not reachable in this region ('us-east-1')

I'm creating a csv processing pipeline where I upload a raw csv file to S3, Lambda performs transformations/cleaning on it with python, and then uploads it into a different/receiving S3 bucket. In the same Lambda function I'm creating a…
2
votes
2 answers

How to determine which AWS regions are being used by various accounts?

Overview Within our AWS Organization, we have various AWS accounts and across all of those accounts want to understand which teams are leveraging services in which regions within each account. Does anyone know of a way to pull this kind of…
2
votes
1 answer

AWS IOT Core rule trigger lambda function in different region

I have my AWS IOT Core setup in AP-South-1 Region, all my devices are present there. But due to the region constraint of alexa skill service endpoint (i.e. only available in North Virginia, Ireland and Oregon), my lambda is in Ireland region (since…
2
votes
3 answers

what exactly mean AWS region and choosing right region for business

What exactly is the region in AWS world? I have to ask which region is the right region for my business.Which factors are important before selecting region in AWS?
fgul
  • 5,763
  • 2
  • 46
  • 32
2
votes
6 answers

Spring boot application stopping without any error on console

I have created spring boot application using maven. Where I built a executable jar for application the tried to run it on EC2 instance free tier windows using following command java -jar com-spring-boot-apps-0.0.1-SNAPSHOT.jar --server.port=8181…
Prasad S Deshpande
  • 1,362
  • 4
  • 15
  • 35
2
votes
1 answer

How to create Glue connection to a rds instance running in different region VPC?

Our database which we want to crawl is in us-west-1 region and glue service is not yet available in this region. So I am using glue in us-west-2, Now I want to create a connection to database in us-west-1 region. While creating the connection, It…
conetfun
  • 1,605
  • 4
  • 17
  • 38
2
votes
2 answers

AWS rekognition and s3 bucket region

I am getting the following error when trying to access my s3 bucket with aws rekognition: message: 'Unable to get object metadata from S3. Check object key, region and/or access permissions.', My hunch is it has something to do with the region.…
2
votes
1 answer

Unable to deliver worldwide text message from aws lambda function

I am trying to send OTP from my AWS Lambda function hosted in AP-South-1 (i.e. Mumbai) region. I am using a worldwide text-messaging feature of SNS for this. As the "AP-South-1" region does not support worldwide text-messaging feature, I am sending…
Sudip
  • 647
  • 2
  • 7
  • 28
1
vote
0 answers

How does Lambda@Edge decide which region to run in?

My CloudFront distribution is geo-restricted to UK only. My WAF is blocking all non-UK traffic. I have a Lambda@Edge function attached to my CloudFront, triggering from "origin request". Testing this from my home in the UK: my function mostly…
1
vote
0 answers

How to copy an rds snapshot from a sub region (ap-east-1) to a main one (us-east-1)?

When running the aws cli command: aws rds copy-db-cluster-snapshot \ --source-db-cluster-snapshot-identifier arn:aws:rds:ap-east-1::cluster-snapshot:rds:-2022-09-19-11-18 \ …
Nae
  • 14,209
  • 7
  • 52
  • 79
1
vote
0 answers

Obtain list of ACTIVE regions only | boto3 | AWS

So as you know, there are several ways to list available regions using boto3 client For instance: ec2 = boto3.client('ec2') ec2.describe_regions()['Regions'] or session = Session() available_regions = session.get_available_regions("ec2",…
Ali
  • 289
  • 4
  • 10