curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/awsIamRoleBindings \
--header 'Authorization: Bearer <token>'{
"awsIamRoleBindings": [
{
"principal": "<string>",
"role": "<string>",
"accountId": "<string>",
"createTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}curl --request GET \
--url https://api.fireworks.ai/v1/accounts/{account_id}/awsIamRoleBindings \
--header 'Authorization: Bearer <token>'{
"awsIamRoleBindings": [
{
"principal": "<string>",
"role": "<string>",
"accountId": "<string>",
"createTime": "2023-11-07T05:31:56Z"
}
],
"nextPageToken": "<string>",
"totalSize": 123
}Bearer authentication using your Fireworks API key. Format: Bearer <API_KEY>
The Account Id
The maximum number of bindings to return. The maximum page_size is 200, values above 200 will be coerced to 200. If unspecified, the default is 50.
A page token, received from a previous ListAwsIamRoleBindings call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListAwsIamRoleBindings must match the call that provided the page token.
Only bindings satisfying the provided filter (if specified) will be returned. See https://google.aip.dev/160 for the filter grammar.
A comma-separated list of fields to order by. e.g. "foo,bar" The default sort order is ascending. To specify a descending order for a field, append a " desc" suffix. e.g. "foo desc,bar" Subfields are specified with a "." character. e.g. "foo.bar" If not specified, the default order is by "name".
The fields to be returned in the response. If empty or "*", all fields will be returned.
A successful response.
Show child attributes
The principal that is allowed to assume the AWS IAM role. This must be the email address of the user.
The AWS IAM role ARN that is allowed to be assumed by the principal.
The account ID that this binding is associated with.
The creation time of the AWS IAM role binding.
A token, which can be sent as page_token to retrieve the next page.
If this field is omitted, there are no subsequent pages.
The total number of AWS IAM role bindings.
Was this page helpful?