UpdateDataIntegrationCommand

Updates the description of a DataIntegration.

You cannot create a DataIntegration association for a DataIntegration that has been previously associated. Use a different DataIntegration, or recreate the DataIntegration using the CreateDataIntegration  API.

Example Syntax

Use a bare-bones client and the command you need to make an API call.

import { AppIntegrationsClient, UpdateDataIntegrationCommand } from "@aws-sdk/client-appintegrations"; // ES Modules import
// const { AppIntegrationsClient, UpdateDataIntegrationCommand } = require("@aws-sdk/client-appintegrations"); // CommonJS import
const client = new AppIntegrationsClient(config);
const input = { // UpdateDataIntegrationRequest
  Identifier: "STRING_VALUE", // required
  Name: "STRING_VALUE",
  Description: "STRING_VALUE",
};
const command = new UpdateDataIntegrationCommand(input);
const response = await client.send(command);
// {};

UpdateDataIntegrationCommand Input

Parameter
Type
Description
Identifier
Required
string | undefined

A unique identifier for the DataIntegration.

Description
string | undefined

A description of the DataIntegration.

Name
string | undefined

The name of the DataIntegration.

UpdateDataIntegrationCommand Output

Parameter
Type
Description
$metadata
Required
ResponseMetadata
Metadata pertaining to this request.

Throws

Name
Fault
Details
AccessDeniedException
client

You do not have sufficient access to perform this action.

InternalServiceError
server

Request processing failed due to an error or failure with the service.

InvalidRequestException
client

The request is not valid.

ResourceNotFoundException
client

The specified resource was not found.

ThrottlingException
client

The throttling limit has been exceeded.

AppIntegrationsServiceException
Base exception class for all service exceptions from AppIntegrations service.