- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
PopulateIdMappingTableCommand
Defines the information that's necessary to populate an ID mapping table.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { CleanRoomsClient, PopulateIdMappingTableCommand } from "@aws-sdk/client-cleanrooms"; // ES Modules import
// const { CleanRoomsClient, PopulateIdMappingTableCommand } = require("@aws-sdk/client-cleanrooms"); // CommonJS import
const client = new CleanRoomsClient(config);
const input = { // PopulateIdMappingTableInput
idMappingTableIdentifier: "STRING_VALUE", // required
membershipIdentifier: "STRING_VALUE", // required
};
const command = new PopulateIdMappingTableCommand(input);
const response = await client.send(command);
// { // PopulateIdMappingTableOutput
// idMappingJobId: "STRING_VALUE", // required
// };
PopulateIdMappingTableCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
idMappingTableIdentifier Required | string | undefined | The unique identifier of the ID mapping table that you want to populate. |
membershipIdentifier Required | string | undefined | The unique identifier of the membership that contains the ID mapping table that you want to populate. |
PopulateIdMappingTableCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
idMappingJobId Required | string | undefined | The unique identifier of the mapping job that will populate the ID mapping table. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | Caller does not have sufficient access to perform this action. |
ConflictException | client | Updating or deleting a resource can cause an inconsistent state. |
InternalServerException | server | Unexpected error during processing of request. |
ResourceNotFoundException | client | Request references a resource which does not exist. |
ServiceQuotaExceededException | client | Request denied because service quota has been exceeded. |
ThrottlingException | client | Request was denied due to request throttling. |
ValidationException | client | The input fails to satisfy the specified constraints. |
CleanRoomsServiceException | Base exception class for all service exceptions from CleanRooms service. |