Skip to content

Create Integration

redshift_create_integration R Documentation

Creates a zero-ETL integration or S3 event integration with Amazon Redshift

Description

Creates a zero-ETL integration or S3 event integration with Amazon Redshift.

Usage

redshift_create_integration(SourceArn, TargetArn, IntegrationName,
  KMSKeyId, TagList, AdditionalEncryptionContext, Description)

Arguments

SourceArn

[required] The Amazon Resource Name (ARN) of the database to use as the source for replication.

TargetArn

[required] The Amazon Resource Name (ARN) of the Amazon Redshift data warehouse to use as the target for replication.

IntegrationName

[required] The name of the integration.

KMSKeyId

An Key Management Service (KMS) key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default Amazon Web Services owned key is used.

TagList

A list of tags.

AdditionalEncryptionContext

An optional set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see Encryption context in the Amazon Web Services Key Management Service Developer Guide.

You can only include this parameter if you specify the KMSKeyId parameter.

Description

A description of the integration.

Value

A list with the following syntax:

list(
  IntegrationArn = "string",
  IntegrationName = "string",
  SourceArn = "string",
  TargetArn = "string",
  Status = "creating"|"active"|"modifying"|"failed"|"deleting"|"syncing"|"needs_attention",
  Errors = list(
    list(
      ErrorCode = "string",
      ErrorMessage = "string"
    )
  ),
  CreateTime = as.POSIXct(
    "2015-01-01"
  ),
  Description = "string",
  KMSKeyId = "string",
  AdditionalEncryptionContext = list(
    "string"
  ),
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Request syntax

svc$create_integration(
  SourceArn = "string",
  TargetArn = "string",
  IntegrationName = "string",
  KMSKeyId = "string",
  TagList = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  AdditionalEncryptionContext = list(
    "string"
  ),
  Description = "string"
)