前提・実現したいこと
以下のサイトを参考に、amazon forecastを操作しています。
https://dev.classmethod.jp/articles/amazon-forecast-aws-sdk-boto3/#toc-12
ですが、create datasetの部分でエラーが起きてしまい、止まってしまいます。
具体的には
初歩的なものかも知れませんが、エラーの原因がわからないので、教えていただけますでしょうか?
具体的には、データセットインポートの作成の部分です。
DatasetArnの部分と、AoleArnの部分が、何を変更すればいいかわかりません。私はルートユーザーですが、xxxxの部分をどう変更したら良いでしょうか。
発生している問題・エラーメッセージ
python
1--------------------------------------------------------------------------- 2InvalidInputException Traceback (most recent call last) 3<ipython-input-55-88664a8dd684> in <module> 4----> 1 response = client.create_dataset_import_job( 5 2 DatasetImportJobName='dataset_import_by_sdk', 6 3 DatasetArn='arn:aws:forecast:ap-northeast-1:xxxxxxxxxxxx:dataset/dataset_by_sdk', 7 4 DataSource={ 8 5 'S3Config': { 9 10~/opt/anaconda3/lib/python3.8/site-packages/botocore/client.py in _api_call(self, *args, **kwargs) 11 355 "%s() only accepts keyword arguments." % py_operation_name) 12 356 # The "self" in this scope is referring to the BaseClient. 13--> 357 return self._make_api_call(operation_name, kwargs) 14 358 15 359 _api_call.__name__ = str(py_operation_name) 16 17~/opt/anaconda3/lib/python3.8/site-packages/botocore/client.py in _make_api_call(self, operation_name, api_params) 18 674 error_code = parsed_response.get("Error", {}).get("Code") 19 675 error_class = self.exceptions.from_code(error_code) 20--> 676 raise error_class(parsed_response, operation_name) 21 677 else: 22 678 return parsed_response 23 24InvalidInputException: An error occurred (InvalidInputException) when calling the CreateDatasetImportJob operation: Invalid ARN for dataset: arn:aws:forecast:ap-northeast-1:xxxxxxxxxxxx:dataset/dataset_by_sdk 25
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。