GetRegisterAccountStatusResponse

GetRegisterAccountStatusResponse schema

AutomotiveConnected VehiclesIoTTelematicsVehicle Data

Properties

Name Type Description
customerAccountId object
accountStatus object
timestreamRegistrationResponse object
iamRegistrationResponse object
creationTime object
lastModificationTime object
View JSON Schema on GitHub

JSON Schema

iot-fleetwise-get-register-account-status-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-get-register-account-status-response-schema.json",
  "title": "GetRegisterAccountStatusResponse",
  "description": "GetRegisterAccountStatusResponse schema",
  "type": "object",
  "properties": {
    "customerAccountId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/customerAccountId"
        },
        {
          "description": " The unique ID of the Amazon Web Services account, provided at account creation. "
        }
      ]
    },
    "accountStatus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RegistrationStatus"
        },
        {
          "description": "<p> The status of registering your account and resources. The status can be one of:</p> <ul> <li> <p> <code>REGISTRATION_SUCCESS</code> - The Amazon Web Services resource is successfully registered.</p> </li> <li> <p> <code>REGISTRATION_PENDING</code> - Amazon Web Services IoT FleetWise is processing the registration request. This process takes approximately five minutes to complete.</p> </li> <li> <p> <code>REGISTRATION_FAILURE</code> - Amazon Web Services IoT FleetWise can't register the AWS resource. Try again later.</p> </li> </ul>"
        }
      ]
    },
    "timestreamRegistrationResponse": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimestreamRegistrationResponse"
        },
        {
          "description": " Information about the registered Amazon Timestream resources or errors, if any."
        }
      ]
    },
    "iamRegistrationResponse": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IamRegistrationResponse"
        },
        {
          "description": " Information about the registered IAM resources or errors, if any. "
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/timestamp"
        },
        {
          "description": " The time the account was registered, in seconds since epoch (January 1, 1970 at midnight UTC time). "
        }
      ]
    },
    "lastModificationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/timestamp"
        },
        {
          "description": " The time this registration was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). "
        }
      ]
    }
  },
  "required": [
    "customerAccountId",
    "accountStatus",
    "iamRegistrationResponse",
    "creationTime",
    "lastModificationTime"
  ]
}