Method
_get_ignored_credentials
(self, aws_session_token, aws_account_id)
Source from the content-addressed store, hash-verified
| 1049 | return results |
| 1050 | |
| 1051 | def _get_ignored_credentials(self, aws_session_token, aws_account_id): |
| 1052 | credential_inputs = [] |
| 1053 | if aws_session_token: |
| 1054 | credential_inputs.append('aws_session_token') |
| 1055 | if aws_account_id: |
| 1056 | credential_inputs.append('aws_account_id') |
| 1057 | return ', '.join(credential_inputs) if credential_inputs else None |
| 1058 | |
| 1059 | |
| 1060 | class ComponentLocator: |
Tested by
no test coverage detected