Resource: aws_appintegrations_data_integration

Provides an Amazon AppIntegrations Data Integration resource.

Example Usage

resource "aws_appintegrations_data_integration" "example" {
  name        = "example"
  description = "example"
  kms_key     = aws_kms_key.test.arn
  source_uri  = "Salesforce://AppFlow/example"

  schedule_config {
    first_execution_from = "1439788442681"
    object               = "Account"
    schedule_expression  = "rate(1 hour)"
  }

  tags = {
    "Key1" = "Value1"
  }
}

Argument Reference

This resource supports the following arguments:

A schedule_config block supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import Amazon AppIntegrations Data Integrations using the id. For example:

import {
  to = aws_appintegrations_data_integration.example
  id = "12345678-1234-1234-1234-123456789123"
}

Using terraform import, import Amazon AppIntegrations Data Integrations using the id. For example:

% terraform import aws_appintegrations_data_integration.example 12345678-1234-1234-1234-123456789123