AWS Chime control region ap-southeast-1 throwing error

0

I'm trying to connect to AWS Chime API.

When trying to use control region as AP_SOUTHEAST_1(Singapore) for chime, it is throwing error

According to this article:amazon chime regions available Controlling Chime is available in AP_SOUTHEAST_1(Singapore) region

So in my requests, I'm using the region AP_SOUTHEAST_1 which is, according to article, allowed to control Chime.

But for any request I'm getting the error :

Exception in thread "main" software.amazon.awssdk.core.exception.SdkClientException: Received an UnknownHostException when attempting to interact with a service. See cause for the exact endpoint that is failing to resolve. This specific service is global in the same partition as the region configured on this client (ap-southeast-1). If this is the first time you're trying to talk to this service in this region, you should try configuring the global region on your client, instead: aws-global

Only US_EAST_1(N. Virginia) is working

2 Answers
0

Incorrect region configuration: If you are using a region-specific endpoint for the service, the error may be caused by an incorrect region configuration on your client. In this case, you may be able to resolve the error by configuring the global region on your client, as suggested in the error message.

Network connectivity issues: The error may also be caused by network connectivity issues on your client. This could include problems with your internet connection, or issues with your local network configuration.

Service availability issues: It is also possible that the service itself is experiencing availability issues, which could prevent your client from being able to reach the service endpoint.

SeanSi
answered a year ago
0

If you began developing your application against the Amazon Chime API global endpoint, you might have had code to override the endpoint URL. Make sure that you do not have that code any longer. If you set the region properly, the AWS SDK should construct the right regional endpoint.

For reference, this is the endpoint URL that you should be using for ap-southeast-1: https://meetings-chime.ap-southeast-1.amazonaws.com. Does that match?

profile pictureAWS
DougL
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions