Skip to main content

register_account_status

Creates, updates, deletes, gets or lists a register_account_status resource.

Overview

Nameregister_account_status
TypeResource
Idaws.iotfleetwise.register_account_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_statusstringThe 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_timestring (date-time)The time the account was registered, in seconds since epoch (January 1, 1970 at midnight UTC time).
customer_account_idstringThe unique ID of the Amazon Web Services account, provided at account creation.
iam_registration_responseobjectInformation about the registered IAM resources or errors, if any.
last_modification_timestring (date-time)The time this registration was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time).
timestream_registration_responseobjectInformation about the registered Amazon Timestream resources or errors, if any.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_register_account_statusselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;