import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetRegisterAccountStatusRequest, GetRegisterAccountStatusResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetRegisterAccountStatusCommand}. */ export interface GetRegisterAccountStatusCommandInput extends GetRegisterAccountStatusRequest { } /** * @public * * The output of {@link GetRegisterAccountStatusCommand}. */ export interface GetRegisterAccountStatusCommandOutput extends GetRegisterAccountStatusResponse, __MetadataBearer { } declare const GetRegisterAccountStatusCommand_base: { new (input: GetRegisterAccountStatusCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [GetRegisterAccountStatusCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

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.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { IoTFleetWiseClient, GetRegisterAccountStatusCommand } from "@aws-sdk/client-iotfleetwise"; // ES Modules import * // const { IoTFleetWiseClient, GetRegisterAccountStatusCommand } = require("@aws-sdk/client-iotfleetwise"); // CommonJS import * // import type { IoTFleetWiseClientConfig } from "@aws-sdk/client-iotfleetwise"; * const config = {}; // type is IoTFleetWiseClientConfig * const client = new IoTFleetWiseClient(config); * const input = {}; * const command = new GetRegisterAccountStatusCommand(input); * const response = await client.send(command); * // { // GetRegisterAccountStatusResponse * // customerAccountId: "STRING_VALUE", // required * // accountStatus: "REGISTRATION_PENDING" || "REGISTRATION_SUCCESS" || "REGISTRATION_FAILURE", // required * // timestreamRegistrationResponse: { // TimestreamRegistrationResponse * // timestreamDatabaseName: "STRING_VALUE", // required * // timestreamTableName: "STRING_VALUE", // required * // timestreamDatabaseArn: "STRING_VALUE", * // timestreamTableArn: "STRING_VALUE", * // registrationStatus: "REGISTRATION_PENDING" || "REGISTRATION_SUCCESS" || "REGISTRATION_FAILURE", // required * // errorMessage: "STRING_VALUE", * // }, * // iamRegistrationResponse: { // IamRegistrationResponse * // roleArn: "STRING_VALUE", // required * // registrationStatus: "REGISTRATION_PENDING" || "REGISTRATION_SUCCESS" || "REGISTRATION_FAILURE", // required * // errorMessage: "STRING_VALUE", * // }, * // creationTime: new Date("TIMESTAMP"), // required * // lastModificationTime: new Date("TIMESTAMP"), // required * // }; * * ``` * * @param GetRegisterAccountStatusCommandInput - {@link GetRegisterAccountStatusCommandInput} * @returns {@link GetRegisterAccountStatusCommandOutput} * @see {@link GetRegisterAccountStatusCommandInput} for command's `input` shape. * @see {@link GetRegisterAccountStatusCommandOutput} for command's `response` shape. * @see {@link IoTFleetWiseClientResolvedConfig | config} for IoTFleetWiseClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permission to perform this action.

* * @throws {@link InternalServerException} (server fault) *

The request couldn't be completed because the server temporarily failed.

* * @throws {@link ResourceNotFoundException} (client fault) *

The resource wasn't found.

* * @throws {@link ThrottlingException} (client fault) *

The request couldn't be completed due to throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link IoTFleetWiseServiceException} *

Base exception class for all service exceptions from IoTFleetWise service.

* * * @public */ export declare class GetRegisterAccountStatusCommand extends GetRegisterAccountStatusCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: GetRegisterAccountStatusResponse; }; sdk: { input: GetRegisterAccountStatusCommandInput; output: GetRegisterAccountStatusCommandOutput; }; }; }