You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 20, 2023. It is now read-only.
AWS credentials provider chain that looks for credentials in this order:
330
332
331
333
* Environment Variables - AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY (RECOMMENDED since they are recognized by all the AWS SDKs and CLI except for .NET), or AWS_ACCESS_KEY and AWS_SECRET_KEY (only recognized by Java SDK)
332
334
* Java System Properties - aws.accessKeyId and aws.secretKey
335
+
* Web Identity Token credentials from the environment or container
333
336
* Credential profiles file at the default location (~/.aws/credentials) shared by all AWS SDKs and the AWS CLI
334
337
* Credentials delivered through the Amazon EC2 container service if AWS_CONTAINER_CREDENTIALS_RELATIVE_URI" environment variable is set and security manager has permission to access the variable,
335
338
* Instance profile credentials delivered through the Amazon EC2 metadata service
336
339
337
340
In the connect method or connection object, you can connect by specifying at least ``S3OutputLocation`` and ``AwsRegion``.
338
-
It is not necessary to specify ``User`` and ``Password``.
341
+
``User`` and ``Password`` are not required if environment variables, credential files, or instance profiles have been set.
339
342
340
343
.. code:: python
341
344
@@ -344,6 +347,8 @@ It is not necessary to specify ``User`` and ``Password``.
0 commit comments