# The Credentials object

## Attributes

- `credentials_id` (string, uuid)
  Databricks credential configuration ID.
- `account_id` (string, uuid)
  The Databricks account ID that hosts the credential.
- `aws_credentials` (object)
  - `sts_role` (object)
    - `role_arn` (string)
      The Amazon Resource Name (ARN) of the cross account IAM role.
      Example: `arn:aws:iam::111110000000:role/test_role`
- `credentials_name` (string)
  The human-readable name of the credential configuration object.
  Example: `credential_1`
  Constraints: `[ 4 .. 256 ] characters`
- `creation_time` (int64)
  Time in epoch milliseconds when the credential was created.

## Example

```json
{
  "credentials_id": "string",
  "account_id": "string",
  "aws_credentials": {
    "sts_role": {}
  },
  "credentials_name": "credential_1",
  "creation_time": 0
}
```


