9

我正在使用 AWS 的 JAVA 开发工具包来创建 Polly 客户端。像这样:

BasicAWSCredentials awsCreds = new BasicAWSCredentials("<IAM access Key>", "IAM secret key>");

    AmazonPollyClient apClient = (AmazonPollyClient) AmazonPollyClientBuilder.standard()
            .withCredentials(new AWSStaticCredentialsProvider(awsCreds))
            .build();


    SynthesizeSpeechRequest tssRequest = new SynthesizeSpeechRequest();
    tssRequest.setText(<text>);
    tssRequest.setVoiceId(<voiceid>);
    tssRequest.setOutputFormat(OutputFormat.Mp3);
    SynthesizeSpeechResult tssResult = apClient.synthesizeSpeech(tssRequest);

当我运行此代码时,我收到以下错误消息:

线程“主”com.amazonaws.SdkClientException 中的异常:无法从 com.amazonaws.regions.AwsRegionProviderChain.getRegion(AwsRegionProviderChain.java:56) 链中的任何提供者加载区域信息在 com.amazonaws.client.builder.AwsClientBuilder .setRegion(AwsClientBuilder.java:319) 在 com.amazonaws.client.builder.AwsClientBuilder.configureMutableProperties(AwsClientBuilder.java:295) 在 com.amazonaws.client.builder.AwsSyncClientBuilder.build(AwsSyncClientBuilder.java:38) 在 com. eoffice.aws.speech.Polly.main(Polly.java:42)

我使用 IAM 策略模拟器检查了凭证。这工作正常,权限是好的。

在 ClientBuilder 中设置区域的方法对于 AmazonPollyClientBuilder 不可见,因此我没有(Java SDK)方法来指定区域。

更新: 当我只询问 defaultAwsREgionProviderChain 时,我收到相同的错误消息

DefaultAwsRegionProviderChain defaultAwsRegionProviderChain = new DefaultAwsRegionProviderChain();
System.out.println(defaultAwsRegionProviderChain.getRegion());

更新 2: 当我在 de .aws 文件夹中创建具有以下内容的配置文件时:

[默认] 区域 = eu-west-1

它有效,但我需要一种方法来设置它而不依赖于文件系统。

4

2 回答 2

11

提供一个名为“AWS_REGION”的系统环境变量就可以了。请参阅屏幕截图以了解 IBM Bluemix 中的配置

在此处输入图像描述

于 2017-01-16T12:48:06.237 回答
5

我认为您可以像这样设置区域

AmazonPollyClient apClient = (AmazonPollyClient) AmazonPollyClientBuilder.standard().withCredentials(new AWSStaticCredentialsProvider(awsCreds)).withRegion("<aws-region>").build();
于 2017-04-06T06:04:21.737 回答