DataIntegrationArgs

data class DataIntegrationArgs(val description: Output<String>? = null, val kmsKey: Output<String>? = null, val name: Output<String>? = null, val scheduleConfig: Output<DataIntegrationScheduleConfigArgs>? = null, val sourceUri: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<DataIntegrationArgs>

Provides an Amazon AppIntegrations Data Integration resource.

Example Usage

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()
.description("example")
.kmsKey(aws_kms_key.test().arn())
.sourceUri("Salesforce://AppFlow/example")
.scheduleConfig(DataIntegrationScheduleConfigArgs.builder()
.firstExecutionFrom("1439788442681")
.object("Account")
.scheduleExpression("rate(1 hour)")
.build())
.tags(Map.of("Key1", "Value1"))
.build());
}
}

Import

Amazon AppIntegrations Data Integrations can be imported using the id e.g.,

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

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, kmsKey: Output<String>? = null, name: Output<String>? = null, scheduleConfig: Output<DataIntegrationScheduleConfigArgs>? = null, sourceUri: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

Specifies the description of the Data Integration.

Link copied to clipboard
val kmsKey: Output<String>? = null

Specifies the KMS key Amazon Resource Name (ARN) for the Data Integration.

Link copied to clipboard
val name: Output<String>? = null

Specifies the name of the Data Integration.

Link copied to clipboard

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.

Link copied to clipboard
val sourceUri: Output<String>? = null

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.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

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.

Functions

Link copied to clipboard
open override fun toJava(): DataIntegrationArgs