DataIntegration

class DataIntegration : KotlinCustomResource

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

Properties

Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name (ARN) of the Data Integration.

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

Specifies the description of the Data Integration.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val kmsKey: Output<String>

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

Link copied to clipboard
val name: Output<String>

Specifies the name of the Data Integration.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
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>

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>>?

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.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>