1. Packages
  2. AWS
  3. API Docs
  4. appintegrations
  5. DataIntegration
AWS v6.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

aws.appintegrations.DataIntegration

Explore with Pulumi AI

Provides an Amazon AppIntegrations Data Integration resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.appintegrations.DataIntegration("example", {
    name: "example",
    description: "example",
    kmsKey: test.arn,
    sourceUri: "Salesforce://AppFlow/example",
    scheduleConfig: {
        firstExecutionFrom: "1439788442681",
        object: "Account",
        scheduleExpression: "rate(1 hour)",
    },
    tags: {
        Key1: "Value1",
    },
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.appintegrations.DataIntegration("example",
    name="example",
    description="example",
    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",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appintegrations"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := appintegrations.NewDataIntegration(ctx, "example", &appintegrations.DataIntegrationArgs{
			Name:        pulumi.String("example"),
			Description: pulumi.String("example"),
			KmsKey:      pulumi.Any(test.Arn),
			SourceUri:   pulumi.String("Salesforce://AppFlow/example"),
			ScheduleConfig: &appintegrations.DataIntegrationScheduleConfigArgs{
				FirstExecutionFrom: pulumi.String("1439788442681"),
				Object:             pulumi.String("Account"),
				ScheduleExpression: pulumi.String("rate(1 hour)"),
			},
			Tags: pulumi.StringMap{
				"Key1": pulumi.String("Value1"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.AppIntegrations.DataIntegration("example", new()
    {
        Name = "example",
        Description = "example",
        KmsKey = test.Arn,
        SourceUri = "Salesforce://AppFlow/example",
        ScheduleConfig = new Aws.AppIntegrations.Inputs.DataIntegrationScheduleConfigArgs
        {
            FirstExecutionFrom = "1439788442681",
            Object = "Account",
            ScheduleExpression = "rate(1 hour)",
        },
        Tags = 
        {
            { "Key1", "Value1" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appintegrations.DataIntegration;
import com.pulumi.aws.appintegrations.DataIntegrationArgs;
import com.pulumi.aws.appintegrations.inputs.DataIntegrationScheduleConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new DataIntegration("example", DataIntegrationArgs.builder()
            .name("example")
            .description("example")
            .kmsKey(test.arn())
            .sourceUri("Salesforce://AppFlow/example")
            .scheduleConfig(DataIntegrationScheduleConfigArgs.builder()
                .firstExecutionFrom("1439788442681")
                .object("Account")
                .scheduleExpression("rate(1 hour)")
                .build())
            .tags(Map.of("Key1", "Value1"))
            .build());

    }
}
Copy
resources:
  example:
    type: aws:appintegrations:DataIntegration
    properties:
      name: example
      description: example
      kmsKey: ${test.arn}
      sourceUri: Salesforce://AppFlow/example
      scheduleConfig:
        firstExecutionFrom: '1439788442681'
        object: Account
        scheduleExpression: rate(1 hour)
      tags:
        Key1: Value1
Copy

Create DataIntegration Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DataIntegration(name: string, args: DataIntegrationArgs, opts?: CustomResourceOptions);
@overload
def DataIntegration(resource_name: str,
                    args: DataIntegrationArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def DataIntegration(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    kms_key: Optional[str] = None,
                    schedule_config: Optional[DataIntegrationScheduleConfigArgs] = None,
                    source_uri: Optional[str] = None,
                    description: Optional[str] = None,
                    name: Optional[str] = None,
                    tags: Optional[Mapping[str, str]] = None)
func NewDataIntegration(ctx *Context, name string, args DataIntegrationArgs, opts ...ResourceOption) (*DataIntegration, error)
public DataIntegration(string name, DataIntegrationArgs args, CustomResourceOptions? opts = null)
public DataIntegration(String name, DataIntegrationArgs args)
public DataIntegration(String name, DataIntegrationArgs args, CustomResourceOptions options)
type: aws:appintegrations:DataIntegration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DataIntegrationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DataIntegrationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DataIntegrationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DataIntegrationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DataIntegrationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var dataIntegrationResource = new Aws.AppIntegrations.DataIntegration("dataIntegrationResource", new()
{
    KmsKey = "string",
    ScheduleConfig = new Aws.AppIntegrations.Inputs.DataIntegrationScheduleConfigArgs
    {
        FirstExecutionFrom = "string",
        Object = "string",
        ScheduleExpression = "string",
    },
    SourceUri = "string",
    Description = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := appintegrations.NewDataIntegration(ctx, "dataIntegrationResource", &appintegrations.DataIntegrationArgs{
	KmsKey: pulumi.String("string"),
	ScheduleConfig: &appintegrations.DataIntegrationScheduleConfigArgs{
		FirstExecutionFrom: pulumi.String("string"),
		Object:             pulumi.String("string"),
		ScheduleExpression: pulumi.String("string"),
	},
	SourceUri:   pulumi.String("string"),
	Description: pulumi.String("string"),
	Name:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var dataIntegrationResource = new DataIntegration("dataIntegrationResource", DataIntegrationArgs.builder()
    .kmsKey("string")
    .scheduleConfig(DataIntegrationScheduleConfigArgs.builder()
        .firstExecutionFrom("string")
        .object("string")
        .scheduleExpression("string")
        .build())
    .sourceUri("string")
    .description("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
data_integration_resource = aws.appintegrations.DataIntegration("dataIntegrationResource",
    kms_key="string",
    schedule_config={
        "first_execution_from": "string",
        "object": "string",
        "schedule_expression": "string",
    },
    source_uri="string",
    description="string",
    name="string",
    tags={
        "string": "string",
    })
Copy
const dataIntegrationResource = new aws.appintegrations.DataIntegration("dataIntegrationResource", {
    kmsKey: "string",
    scheduleConfig: {
        firstExecutionFrom: "string",
        object: "string",
        scheduleExpression: "string",
    },
    sourceUri: "string",
    description: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:appintegrations:DataIntegration
properties:
    description: string
    kmsKey: string
    name: string
    scheduleConfig:
        firstExecutionFrom: string
        object: string
        scheduleExpression: string
    sourceUri: string
    tags:
        string: string
Copy

DataIntegration Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DataIntegration resource accepts the following input properties:

KmsKey This property is required. string
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
ScheduleConfig
This property is required.
Changes to this property will trigger replacement.
DataIntegrationScheduleConfig
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
SourceUri
This property is required.
Changes to this property will trigger replacement.
string
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
Description string
Specifies the description of the Data Integration.
Name Changes to this property will trigger replacement. string
Specifies the name of the Data Integration.
Tags Dictionary<string, string>
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
KmsKey This property is required. string
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
ScheduleConfig
This property is required.
Changes to this property will trigger replacement.
DataIntegrationScheduleConfigArgs
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
SourceUri
This property is required.
Changes to this property will trigger replacement.
string
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
Description string
Specifies the description of the Data Integration.
Name Changes to this property will trigger replacement. string
Specifies the name of the Data Integration.
Tags map[string]string
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
kmsKey This property is required. String
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
scheduleConfig
This property is required.
Changes to this property will trigger replacement.
DataIntegrationScheduleConfig
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
sourceUri
This property is required.
Changes to this property will trigger replacement.
String
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
description String
Specifies the description of the Data Integration.
name Changes to this property will trigger replacement. String
Specifies the name of the Data Integration.
tags Map<String,String>
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
kmsKey This property is required. string
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
scheduleConfig
This property is required.
Changes to this property will trigger replacement.
DataIntegrationScheduleConfig
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
sourceUri
This property is required.
Changes to this property will trigger replacement.
string
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
description string
Specifies the description of the Data Integration.
name Changes to this property will trigger replacement. string
Specifies the name of the Data Integration.
tags {[key: string]: string}
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
kms_key This property is required. str
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
schedule_config
This property is required.
Changes to this property will trigger replacement.
DataIntegrationScheduleConfigArgs
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
source_uri
This property is required.
Changes to this property will trigger replacement.
str
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
description str
Specifies the description of the Data Integration.
name Changes to this property will trigger replacement. str
Specifies the name of the Data Integration.
tags Mapping[str, str]
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
kmsKey This property is required. String
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
scheduleConfig
This property is required.
Changes to this property will trigger replacement.
Property Map
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
sourceUri
This property is required.
Changes to this property will trigger replacement.
String
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
description String
Specifies the description of the Data Integration.
name Changes to this property will trigger replacement. String
Specifies the name of the Data Integration.
tags Map<String>
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Outputs

All input properties are implicitly available as output properties. Additionally, the DataIntegration resource produces the following output properties:

Arn string
The Amazon Resource Name (ARN) of the Data Integration.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The Amazon Resource Name (ARN) of the Data Integration.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name (ARN) of the Data Integration.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The Amazon Resource Name (ARN) of the Data Integration.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The Amazon Resource Name (ARN) of the Data Integration.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name (ARN) of the Data Integration.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing DataIntegration Resource

Get an existing DataIntegration resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DataIntegrationState, opts?: CustomResourceOptions): DataIntegration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        description: Optional[str] = None,
        kms_key: Optional[str] = None,
        name: Optional[str] = None,
        schedule_config: Optional[DataIntegrationScheduleConfigArgs] = None,
        source_uri: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> DataIntegration
func GetDataIntegration(ctx *Context, name string, id IDInput, state *DataIntegrationState, opts ...ResourceOption) (*DataIntegration, error)
public static DataIntegration Get(string name, Input<string> id, DataIntegrationState? state, CustomResourceOptions? opts = null)
public static DataIntegration get(String name, Output<String> id, DataIntegrationState state, CustomResourceOptions options)
resources:  _:    type: aws:appintegrations:DataIntegration    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
The Amazon Resource Name (ARN) of the Data Integration.
Description string
Specifies the description of the Data Integration.
KmsKey string
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
Name Changes to this property will trigger replacement. string
Specifies the name of the Data Integration.
ScheduleConfig Changes to this property will trigger replacement. DataIntegrationScheduleConfig
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
SourceUri Changes to this property will trigger replacement. string
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
Tags Dictionary<string, string>
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
The Amazon Resource Name (ARN) of the Data Integration.
Description string
Specifies the description of the Data Integration.
KmsKey string
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
Name Changes to this property will trigger replacement. string
Specifies the name of the Data Integration.
ScheduleConfig Changes to this property will trigger replacement. DataIntegrationScheduleConfigArgs
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
SourceUri Changes to this property will trigger replacement. string
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
Tags map[string]string
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
TagsAll map[string]string
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name (ARN) of the Data Integration.
description String
Specifies the description of the Data Integration.
kmsKey String
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
name Changes to this property will trigger replacement. String
Specifies the name of the Data Integration.
scheduleConfig Changes to this property will trigger replacement. DataIntegrationScheduleConfig
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
sourceUri Changes to this property will trigger replacement. String
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
tags Map<String,String>
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
The Amazon Resource Name (ARN) of the Data Integration.
description string
Specifies the description of the Data Integration.
kmsKey string
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
name Changes to this property will trigger replacement. string
Specifies the name of the Data Integration.
scheduleConfig Changes to this property will trigger replacement. DataIntegrationScheduleConfig
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
sourceUri Changes to this property will trigger replacement. string
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
tags {[key: string]: string}
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
The Amazon Resource Name (ARN) of the Data Integration.
description str
Specifies the description of the Data Integration.
kms_key str
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
name Changes to this property will trigger replacement. str
Specifies the name of the Data Integration.
schedule_config Changes to this property will trigger replacement. DataIntegrationScheduleConfigArgs
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
source_uri Changes to this property will trigger replacement. str
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
tags Mapping[str, str]
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tags_all Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
The Amazon Resource Name (ARN) of the Data Integration.
description String
Specifies the description of the Data Integration.
kmsKey String
Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.
name Changes to this property will trigger replacement. String
Specifies the name of the Data Integration.
scheduleConfig Changes to this property will trigger replacement. Property Map
A block that defines the name of the data and how often it should be pulled from the source. The Schedule Config block is documented below.
sourceUri Changes to this property will trigger replacement. String
Specifies the URI of the data source. Create an AppFlow Connector Profile and reference the name of the profile in the URL. An example of this value for Salesforce is Salesforce://AppFlow/example where example is the name of the AppFlow Connector Profile.
tags Map<String>
Tags to apply to the Data Integration. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
tagsAll Map<String>
A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Supporting Types

DataIntegrationScheduleConfig
, DataIntegrationScheduleConfigArgs

FirstExecutionFrom
This property is required.
Changes to this property will trigger replacement.
string
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. This needs to be a time in the past, meaning that the data created or updated before this given date will not be downloaded.
Object
This property is required.
Changes to this property will trigger replacement.
string
The name of the object to pull from the data source. Examples of objects in Salesforce include Case, Account, or Lead.
ScheduleExpression
This property is required.
Changes to this property will trigger replacement.
string
How often the data should be pulled from data source. Examples include rate(1 hour), rate(3 hours), rate(1 day).
FirstExecutionFrom
This property is required.
Changes to this property will trigger replacement.
string
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. This needs to be a time in the past, meaning that the data created or updated before this given date will not be downloaded.
Object
This property is required.
Changes to this property will trigger replacement.
string
The name of the object to pull from the data source. Examples of objects in Salesforce include Case, Account, or Lead.
ScheduleExpression
This property is required.
Changes to this property will trigger replacement.
string
How often the data should be pulled from data source. Examples include rate(1 hour), rate(3 hours), rate(1 day).
firstExecutionFrom
This property is required.
Changes to this property will trigger replacement.
String
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. This needs to be a time in the past, meaning that the data created or updated before this given date will not be downloaded.
object
This property is required.
Changes to this property will trigger replacement.
String
The name of the object to pull from the data source. Examples of objects in Salesforce include Case, Account, or Lead.
scheduleExpression
This property is required.
Changes to this property will trigger replacement.
String
How often the data should be pulled from data source. Examples include rate(1 hour), rate(3 hours), rate(1 day).
firstExecutionFrom
This property is required.
Changes to this property will trigger replacement.
string
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. This needs to be a time in the past, meaning that the data created or updated before this given date will not be downloaded.
object
This property is required.
Changes to this property will trigger replacement.
string
The name of the object to pull from the data source. Examples of objects in Salesforce include Case, Account, or Lead.
scheduleExpression
This property is required.
Changes to this property will trigger replacement.
string
How often the data should be pulled from data source. Examples include rate(1 hour), rate(3 hours), rate(1 day).
first_execution_from
This property is required.
Changes to this property will trigger replacement.
str
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. This needs to be a time in the past, meaning that the data created or updated before this given date will not be downloaded.
object
This property is required.
Changes to this property will trigger replacement.
str
The name of the object to pull from the data source. Examples of objects in Salesforce include Case, Account, or Lead.
schedule_expression
This property is required.
Changes to this property will trigger replacement.
str
How often the data should be pulled from data source. Examples include rate(1 hour), rate(3 hours), rate(1 day).
firstExecutionFrom
This property is required.
Changes to this property will trigger replacement.
String
The start date for objects to import in the first flow run as an Unix/epoch timestamp in milliseconds or in ISO-8601 format. This needs to be a time in the past, meaning that the data created or updated before this given date will not be downloaded.
object
This property is required.
Changes to this property will trigger replacement.
String
The name of the object to pull from the data source. Examples of objects in Salesforce include Case, Account, or Lead.
scheduleExpression
This property is required.
Changes to this property will trigger replacement.
String
How often the data should be pulled from data source. Examples include rate(1 hour), rate(3 hours), rate(1 day).

Import

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

$ pulumi import aws:appintegrations/dataIntegration:DataIntegration example 12345678-1234-1234-1234-123456789123
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.