Amazon Appflow

2022/11/18 - Amazon Appflow - 1 new api methods

Changes  AppFlow provides a new API called UpdateConnectorRegistration to update a custom connector that customers have previously registered. With this API, customers no longer need to unregister and then register a connector to make an update.

UpdateConnectorRegistration (new) Link ΒΆ

Updates a custom connector that you've previously registered. This operation updates the connector with one of the following:

  • The latest version of the AWS Lambda function that's assigned to the connector

  • A new AWS Lambda function that you specify

See also: AWS API Documentation

Request Syntax

client.update_connector_registration(
    connectorLabel='string',
    description='string',
    connectorProvisioningConfig={
        'lambda': {
            'lambdaArn': 'string'
        }
    }
)
type connectorLabel

string

param connectorLabel

[REQUIRED]

The name of the connector. The name is unique for each connector registration in your AWS account.

type description

string

param description

A description about the update that you're applying to the connector.

type connectorProvisioningConfig

dict

param connectorProvisioningConfig

Contains information about the configuration of the connector being registered.

  • lambda (dict) --

    Contains information about the configuration of the lambda which is being registered as the connector.

    • lambdaArn (string) -- [REQUIRED]

      Lambda ARN of the connector being registered.

rtype

dict

returns

Response Syntax

{
    'connectorArn': 'string'
}

Response Structure

  • (dict) --

    • connectorArn (string) --

      The ARN of the connector being updated.