register_account_status
Creates, updates, deletes, gets or lists a register_account_status resource.
Overview
| Name | register_account_status |
| Type | Resource |
| Id | aws.iotfleetwise.register_account_status |
Fields
The following fields are returned by SELECT queries:
- get_register_account_status
| Name | Datatype | Description |
|---|---|---|
account_status | string | The status of registering your account and resources. The status can be one of: REGISTRATION_SUCCESS - The Amazon Web Services resource is successfully registered. REGISTRATION_PENDING - Amazon Web Services IoT FleetWise is processing the registration request. This process takes approximately five minutes to complete. REGISTRATION_FAILURE - Amazon Web Services IoT FleetWise can't register the AWS resource. Try again later. (REGISTRATION_PENDING, REGISTRATION_SUCCESS, REGISTRATION_FAILURE) |
creation_time | string (date-time) | The time the account was registered, in seconds since epoch (January 1, 1970 at midnight UTC time). |
customer_account_id | string | The unique ID of the Amazon Web Services account, provided at account creation. |
iam_registration_response | object | Information about the registered IAM resources or errors, if any. |
last_modification_time | string (date-time) | The time this registration was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). |
timestream_registration_response | object | Information about the registered Amazon Timestream resources or errors, if any. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_register_account_status | select | region | Retrieves information about the status of registering your Amazon Web Services account, IAM, and Amazon Timestream resources so that Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud. For more information, including step-by-step procedures, see Setting up Amazon Web Services IoT FleetWise. This API operation doesn't require input parameters. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_register_account_status
Retrieves information about the status of registering your Amazon Web Services account, IAM, and Amazon Timestream resources so that Amazon Web Services IoT FleetWise can transfer your vehicle data to the Amazon Web Services Cloud. For more information, including step-by-step procedures, see Setting up Amazon Web Services IoT FleetWise. This API operation doesn't require input parameters.
SELECT
account_status,
creation_time,
customer_account_id,
iam_registration_response,
last_modification_time,
timestream_registration_response
FROM aws.iotfleetwise.register_account_status
WHERE region = '{{ region }}' -- required
;