Data Integration
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());
}
}
Content copied to clipboard
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
Content copied to clipboard
Properties
Link copied to clipboard
Specifies the description of the Data Integration.
Link copied to clipboard
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