Skip to content

Delete Integration

glue_delete_integration R Documentation

Deletes the specified Zero-ETL integration

Description

Deletes the specified Zero-ETL integration.

Usage

glue_delete_integration(IntegrationIdentifier)

Arguments

IntegrationIdentifier

[required] The Amazon Resource Name (ARN) for the integration.

Value

A list with the following syntax:

list(
  SourceArn = "string",
  TargetArn = "string",
  IntegrationName = "string",
  Description = "string",
  IntegrationArn = "string",
  KmsKeyId = "string",
  AdditionalEncryptionContext = list(
    "string"
  ),
  Tags = list(
    list(
      key = "string",
      value = "string"
    )
  ),
  Status = "CREATING"|"ACTIVE"|"MODIFYING"|"FAILED"|"DELETING"|"SYNCING"|"NEEDS_ATTENTION",
  CreateTime = as.POSIXct(
    "2015-01-01"
  ),
  Errors = list(
    list(
      ErrorCode = "string",
      ErrorMessage = "string"
    )
  ),
  DataFilter = "string"
)

Request syntax

svc$delete_integration(
  IntegrationIdentifier = "string"
)