1. Packages
  2. AWS
  3. API Docs
  4. redshift
  5. Integration
AWS v6.78.0 published on Thursday, Apr 24, 2025 by Pulumi

aws.redshift.Integration

Explore with Pulumi AI

aws logo
AWS v6.78.0 published on Thursday, Apr 24, 2025 by Pulumi

    Resource for managing a DynamoDB zero-ETL integration or S3 event integration with Amazon Redshift. You can refer to the User Guide for a DynamoDB zero-ETL integration or the User Guide for a S3 event integration.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.dynamodb.Table("example", {
        name: "dynamodb-table-example",
        readCapacity: 1,
        writeCapacity: 1,
        hashKey: "example",
        attributes: [{
            name: "example",
            type: "S",
        }],
        pointInTimeRecovery: {
            enabled: true,
        },
    });
    const exampleNamespace = new aws.redshiftserverless.Namespace("example", {namespaceName: "redshift-example"});
    const exampleWorkgroup = new aws.redshiftserverless.Workgroup("example", {
        namespaceName: exampleNamespace.namespaceName,
        workgroupName: "example-workgroup",
        baseCapacity: 8,
        publiclyAccessible: false,
        subnetIds: [
            example1.id,
            example2.id,
            example3.id,
        ],
        configParameters: [{
            parameterKey: "enable_case_sensitive_identifier",
            parameterValue: "true",
        }],
    });
    const exampleIntegration = new aws.redshift.Integration("example", {
        integrationName: "example",
        sourceArn: example.arn,
        targetArn: exampleNamespace.arn,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.dynamodb.Table("example",
        name="dynamodb-table-example",
        read_capacity=1,
        write_capacity=1,
        hash_key="example",
        attributes=[{
            "name": "example",
            "type": "S",
        }],
        point_in_time_recovery={
            "enabled": True,
        })
    example_namespace = aws.redshiftserverless.Namespace("example", namespace_name="redshift-example")
    example_workgroup = aws.redshiftserverless.Workgroup("example",
        namespace_name=example_namespace.namespace_name,
        workgroup_name="example-workgroup",
        base_capacity=8,
        publicly_accessible=False,
        subnet_ids=[
            example1["id"],
            example2["id"],
            example3["id"],
        ],
        config_parameters=[{
            "parameter_key": "enable_case_sensitive_identifier",
            "parameter_value": "true",
        }])
    example_integration = aws.redshift.Integration("example",
        integration_name="example",
        source_arn=example.arn,
        target_arn=example_namespace.arn)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/dynamodb"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/redshift"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/redshiftserverless"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := dynamodb.NewTable(ctx, "example", &dynamodb.TableArgs{
    			Name:          pulumi.String("dynamodb-table-example"),
    			ReadCapacity:  pulumi.Int(1),
    			WriteCapacity: pulumi.Int(1),
    			HashKey:       pulumi.String("example"),
    			Attributes: dynamodb.TableAttributeArray{
    				&dynamodb.TableAttributeArgs{
    					Name: pulumi.String("example"),
    					Type: pulumi.String("S"),
    				},
    			},
    			PointInTimeRecovery: &dynamodb.TablePointInTimeRecoveryArgs{
    				Enabled: pulumi.Bool(true),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleNamespace, err := redshiftserverless.NewNamespace(ctx, "example", &redshiftserverless.NamespaceArgs{
    			NamespaceName: pulumi.String("redshift-example"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = redshiftserverless.NewWorkgroup(ctx, "example", &redshiftserverless.WorkgroupArgs{
    			NamespaceName:      exampleNamespace.NamespaceName,
    			WorkgroupName:      pulumi.String("example-workgroup"),
    			BaseCapacity:       pulumi.Int(8),
    			PubliclyAccessible: pulumi.Bool(false),
    			SubnetIds: pulumi.StringArray{
    				example1.Id,
    				example2.Id,
    				example3.Id,
    			},
    			ConfigParameters: redshiftserverless.WorkgroupConfigParameterArray{
    				&redshiftserverless.WorkgroupConfigParameterArgs{
    					ParameterKey:   pulumi.String("enable_case_sensitive_identifier"),
    					ParameterValue: pulumi.String("true"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = redshift.NewIntegration(ctx, "example", &redshift.IntegrationArgs{
    			IntegrationName: pulumi.String("example"),
    			SourceArn:       example.Arn,
    			TargetArn:       exampleNamespace.Arn,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.DynamoDB.Table("example", new()
        {
            Name = "dynamodb-table-example",
            ReadCapacity = 1,
            WriteCapacity = 1,
            HashKey = "example",
            Attributes = new[]
            {
                new Aws.DynamoDB.Inputs.TableAttributeArgs
                {
                    Name = "example",
                    Type = "S",
                },
            },
            PointInTimeRecovery = new Aws.DynamoDB.Inputs.TablePointInTimeRecoveryArgs
            {
                Enabled = true,
            },
        });
    
        var exampleNamespace = new Aws.RedshiftServerless.Namespace("example", new()
        {
            NamespaceName = "redshift-example",
        });
    
        var exampleWorkgroup = new Aws.RedshiftServerless.Workgroup("example", new()
        {
            NamespaceName = exampleNamespace.NamespaceName,
            WorkgroupName = "example-workgroup",
            BaseCapacity = 8,
            PubliclyAccessible = false,
            SubnetIds = new[]
            {
                example1.Id,
                example2.Id,
                example3.Id,
            },
            ConfigParameters = new[]
            {
                new Aws.RedshiftServerless.Inputs.WorkgroupConfigParameterArgs
                {
                    ParameterKey = "enable_case_sensitive_identifier",
                    ParameterValue = "true",
                },
            },
        });
    
        var exampleIntegration = new Aws.RedShift.Integration("example", new()
        {
            IntegrationName = "example",
            SourceArn = example.Arn,
            TargetArn = exampleNamespace.Arn,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.dynamodb.Table;
    import com.pulumi.aws.dynamodb.TableArgs;
    import com.pulumi.aws.dynamodb.inputs.TableAttributeArgs;
    import com.pulumi.aws.dynamodb.inputs.TablePointInTimeRecoveryArgs;
    import com.pulumi.aws.redshiftserverless.Namespace;
    import com.pulumi.aws.redshiftserverless.NamespaceArgs;
    import com.pulumi.aws.redshiftserverless.Workgroup;
    import com.pulumi.aws.redshiftserverless.WorkgroupArgs;
    import com.pulumi.aws.redshiftserverless.inputs.WorkgroupConfigParameterArgs;
    import com.pulumi.aws.redshift.Integration;
    import com.pulumi.aws.redshift.IntegrationArgs;
    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 Table("example", TableArgs.builder()
                .name("dynamodb-table-example")
                .readCapacity(1)
                .writeCapacity(1)
                .hashKey("example")
                .attributes(TableAttributeArgs.builder()
                    .name("example")
                    .type("S")
                    .build())
                .pointInTimeRecovery(TablePointInTimeRecoveryArgs.builder()
                    .enabled(true)
                    .build())
                .build());
    
            var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
                .namespaceName("redshift-example")
                .build());
    
            var exampleWorkgroup = new Workgroup("exampleWorkgroup", WorkgroupArgs.builder()
                .namespaceName(exampleNamespace.namespaceName())
                .workgroupName("example-workgroup")
                .baseCapacity(8)
                .publiclyAccessible(false)
                .subnetIds(            
                    example1.id(),
                    example2.id(),
                    example3.id())
                .configParameters(WorkgroupConfigParameterArgs.builder()
                    .parameterKey("enable_case_sensitive_identifier")
                    .parameterValue("true")
                    .build())
                .build());
    
            var exampleIntegration = new Integration("exampleIntegration", IntegrationArgs.builder()
                .integrationName("example")
                .sourceArn(example.arn())
                .targetArn(exampleNamespace.arn())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:dynamodb:Table
        properties:
          name: dynamodb-table-example
          readCapacity: 1
          writeCapacity: 1
          hashKey: example
          attributes:
            - name: example
              type: S
          pointInTimeRecovery:
            enabled: true
      exampleNamespace:
        type: aws:redshiftserverless:Namespace
        name: example
        properties:
          namespaceName: redshift-example
      exampleWorkgroup:
        type: aws:redshiftserverless:Workgroup
        name: example
        properties:
          namespaceName: ${exampleNamespace.namespaceName}
          workgroupName: example-workgroup
          baseCapacity: 8
          publiclyAccessible: false
          subnetIds:
            - ${example1.id}
            - ${example2.id}
            - ${example3.id}
          configParameters:
            - parameterKey: enable_case_sensitive_identifier
              parameterValue: 'true'
      exampleIntegration:
        type: aws:redshift:Integration
        name: example
        properties:
          integrationName: example
          sourceArn: ${example.arn}
          targetArn: ${exampleNamespace.arn}
    

    Use own KMS key

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const current = aws.getCallerIdentity({});
    const example = new aws.kms.Key("example", {
        description: "example",
        deletionWindowInDays: 10,
    });
    const exampleKeyPolicy = new aws.kms.KeyPolicy("example", {
        keyId: example.id,
        policy: JSON.stringify({
            Version: "2008-10-17",
            Statement: [
                {
                    Effect: "Allow",
                    Principal: {
                        AWS: current.then(current => `arn:aws:iam::${current.accountId}:root`),
                    },
                    Action: "kms:*",
                    Resource: "*",
                },
                {
                    Effect: "Allow",
                    Principal: {
                        Service: "redshift.amazonaws.com",
                    },
                    Action: [
                        "kms:Decrypt",
                        "kms:CreateGrant",
                    ],
                    Resource: "*",
                    Condition: {
                        StringEquals: {
                            "aws:SourceAccount": current.then(current => current.accountId),
                        },
                        ArnEquals: {
                            "aws:SourceArn": current.then(current => `arn:aws:redshift:*:${current.accountId}:integration:*`),
                        },
                    },
                },
            ],
        }),
    });
    const exampleIntegration = new aws.redshift.Integration("example", {
        integrationName: "example",
        sourceArn: exampleAwsDynamodbTable.arn,
        targetArn: exampleAwsRedshiftserverlessNamespace.arn,
        kmsKeyId: example.arn,
        additionalEncryptionContext: {
            example: "test",
        },
    });
    
    import pulumi
    import json
    import pulumi_aws as aws
    
    current = aws.get_caller_identity()
    example = aws.kms.Key("example",
        description="example",
        deletion_window_in_days=10)
    example_key_policy = aws.kms.KeyPolicy("example",
        key_id=example.id,
        policy=json.dumps({
            "Version": "2008-10-17",
            "Statement": [
                {
                    "Effect": "Allow",
                    "Principal": {
                        "AWS": f"arn:aws:iam::{current.account_id}:root",
                    },
                    "Action": "kms:*",
                    "Resource": "*",
                },
                {
                    "Effect": "Allow",
                    "Principal": {
                        "Service": "redshift.amazonaws.com",
                    },
                    "Action": [
                        "kms:Decrypt",
                        "kms:CreateGrant",
                    ],
                    "Resource": "*",
                    "Condition": {
                        "StringEquals": {
                            "aws:SourceAccount": current.account_id,
                        },
                        "ArnEquals": {
                            "aws:SourceArn": f"arn:aws:redshift:*:{current.account_id}:integration:*",
                        },
                    },
                },
            ],
        }))
    example_integration = aws.redshift.Integration("example",
        integration_name="example",
        source_arn=example_aws_dynamodb_table["arn"],
        target_arn=example_aws_redshiftserverless_namespace["arn"],
        kms_key_id=example.arn,
        additional_encryption_context={
            "example": "test",
        })
    
    package main
    
    import (
    	"encoding/json"
    	"fmt"
    
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kms"
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/redshift"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		current, err := aws.GetCallerIdentity(ctx, &aws.GetCallerIdentityArgs{}, nil)
    		if err != nil {
    			return err
    		}
    		example, err := kms.NewKey(ctx, "example", &kms.KeyArgs{
    			Description:          pulumi.String("example"),
    			DeletionWindowInDays: pulumi.Int(10),
    		})
    		if err != nil {
    			return err
    		}
    		tmpJSON0, err := json.Marshal(map[string]interface{}{
    			"Version": "2008-10-17",
    			"Statement": []interface{}{
    				map[string]interface{}{
    					"Effect": "Allow",
    					"Principal": map[string]interface{}{
    						"AWS": fmt.Sprintf("arn:aws:iam::%v:root", current.AccountId),
    					},
    					"Action":   "kms:*",
    					"Resource": "*",
    				},
    				map[string]interface{}{
    					"Effect": "Allow",
    					"Principal": map[string]interface{}{
    						"Service": "redshift.amazonaws.com",
    					},
    					"Action": []string{
    						"kms:Decrypt",
    						"kms:CreateGrant",
    					},
    					"Resource": "*",
    					"Condition": map[string]interface{}{
    						"StringEquals": map[string]interface{}{
    							"aws:SourceAccount": current.AccountId,
    						},
    						"ArnEquals": map[string]interface{}{
    							"aws:SourceArn": fmt.Sprintf("arn:aws:redshift:*:%v:integration:*", current.AccountId),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		json0 := string(tmpJSON0)
    		_, err = kms.NewKeyPolicy(ctx, "example", &kms.KeyPolicyArgs{
    			KeyId:  example.ID(),
    			Policy: pulumi.String(json0),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = redshift.NewIntegration(ctx, "example", &redshift.IntegrationArgs{
    			IntegrationName: pulumi.String("example"),
    			SourceArn:       pulumi.Any(exampleAwsDynamodbTable.Arn),
    			TargetArn:       pulumi.Any(exampleAwsRedshiftserverlessNamespace.Arn),
    			KmsKeyId:        example.Arn,
    			AdditionalEncryptionContext: pulumi.StringMap{
    				"example": pulumi.String("test"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using System.Text.Json;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var current = Aws.GetCallerIdentity.Invoke();
    
        var example = new Aws.Kms.Key("example", new()
        {
            Description = "example",
            DeletionWindowInDays = 10,
        });
    
        var exampleKeyPolicy = new Aws.Kms.KeyPolicy("example", new()
        {
            KeyId = example.Id,
            Policy = JsonSerializer.Serialize(new Dictionary<string, object?>
            {
                ["Version"] = "2008-10-17",
                ["Statement"] = new[]
                {
                    new Dictionary<string, object?>
                    {
                        ["Effect"] = "Allow",
                        ["Principal"] = new Dictionary<string, object?>
                        {
                            ["AWS"] = $"arn:aws:iam::{current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId)}:root",
                        },
                        ["Action"] = "kms:*",
                        ["Resource"] = "*",
                    },
                    new Dictionary<string, object?>
                    {
                        ["Effect"] = "Allow",
                        ["Principal"] = new Dictionary<string, object?>
                        {
                            ["Service"] = "redshift.amazonaws.com",
                        },
                        ["Action"] = new[]
                        {
                            "kms:Decrypt",
                            "kms:CreateGrant",
                        },
                        ["Resource"] = "*",
                        ["Condition"] = new Dictionary<string, object?>
                        {
                            ["StringEquals"] = new Dictionary<string, object?>
                            {
                                ["aws:SourceAccount"] = current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId),
                            },
                            ["ArnEquals"] = new Dictionary<string, object?>
                            {
                                ["aws:SourceArn"] = $"arn:aws:redshift:*:{current.Apply(getCallerIdentityResult => getCallerIdentityResult.AccountId)}:integration:*",
                            },
                        },
                    },
                },
            }),
        });
    
        var exampleIntegration = new Aws.RedShift.Integration("example", new()
        {
            IntegrationName = "example",
            SourceArn = exampleAwsDynamodbTable.Arn,
            TargetArn = exampleAwsRedshiftserverlessNamespace.Arn,
            KmsKeyId = example.Arn,
            AdditionalEncryptionContext = 
            {
                { "example", "test" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.AwsFunctions;
    import com.pulumi.aws.inputs.GetCallerIdentityArgs;
    import com.pulumi.aws.kms.Key;
    import com.pulumi.aws.kms.KeyArgs;
    import com.pulumi.aws.kms.KeyPolicy;
    import com.pulumi.aws.kms.KeyPolicyArgs;
    import com.pulumi.aws.redshift.Integration;
    import com.pulumi.aws.redshift.IntegrationArgs;
    import static com.pulumi.codegen.internal.Serialization.*;
    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) {
            final var current = AwsFunctions.getCallerIdentity(GetCallerIdentityArgs.builder()
                .build());
    
            var example = new Key("example", KeyArgs.builder()
                .description("example")
                .deletionWindowInDays(10)
                .build());
    
            var exampleKeyPolicy = new KeyPolicy("exampleKeyPolicy", KeyPolicyArgs.builder()
                .keyId(example.id())
                .policy(serializeJson(
                    jsonObject(
                        jsonProperty("Version", "2008-10-17"),
                        jsonProperty("Statement", jsonArray(
                            jsonObject(
                                jsonProperty("Effect", "Allow"),
                                jsonProperty("Principal", jsonObject(
                                    jsonProperty("AWS", String.format("arn:aws:iam::%s:root", current.accountId()))
                                )),
                                jsonProperty("Action", "kms:*"),
                                jsonProperty("Resource", "*")
                            ), 
                            jsonObject(
                                jsonProperty("Effect", "Allow"),
                                jsonProperty("Principal", jsonObject(
                                    jsonProperty("Service", "redshift.amazonaws.com")
                                )),
                                jsonProperty("Action", jsonArray(
                                    "kms:Decrypt", 
                                    "kms:CreateGrant"
                                )),
                                jsonProperty("Resource", "*"),
                                jsonProperty("Condition", jsonObject(
                                    jsonProperty("StringEquals", jsonObject(
                                        jsonProperty("aws:SourceAccount", current.accountId())
                                    )),
                                    jsonProperty("ArnEquals", jsonObject(
                                        jsonProperty("aws:SourceArn", String.format("arn:aws:redshift:*:%s:integration:*", current.accountId()))
                                    ))
                                ))
                            )
                        ))
                    )))
                .build());
    
            var exampleIntegration = new Integration("exampleIntegration", IntegrationArgs.builder()
                .integrationName("example")
                .sourceArn(exampleAwsDynamodbTable.arn())
                .targetArn(exampleAwsRedshiftserverlessNamespace.arn())
                .kmsKeyId(example.arn())
                .additionalEncryptionContext(Map.of("example", "test"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:kms:Key
        properties:
          description: example
          deletionWindowInDays: 10
      exampleKeyPolicy:
        type: aws:kms:KeyPolicy
        name: example
        properties:
          keyId: ${example.id}
          policy:
            fn::toJSON:
              Version: 2008-10-17
              Statement:
                - Effect: Allow
                  Principal:
                    AWS: arn:aws:iam::${current.accountId}:root
                  Action: kms:*
                  Resource: '*'
                - Effect: Allow
                  Principal:
                    Service: redshift.amazonaws.com
                  Action:
                    - kms:Decrypt
                    - kms:CreateGrant
                  Resource: '*'
                  Condition:
                    StringEquals:
                      aws:SourceAccount: ${current.accountId}
                    ArnEquals:
                      aws:SourceArn: arn:aws:redshift:*:${current.accountId}:integration:*
      exampleIntegration:
        type: aws:redshift:Integration
        name: example
        properties:
          integrationName: example
          sourceArn: ${exampleAwsDynamodbTable.arn}
          targetArn: ${exampleAwsRedshiftserverlessNamespace.arn}
          kmsKeyId: ${example.arn}
          additionalEncryptionContext:
            example: test
    variables:
      current:
        fn::invoke:
          function: aws:getCallerIdentity
          arguments: {}
    

    Create Integration Resource

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

    Constructor syntax

    new Integration(name: string, args: IntegrationArgs, opts?: CustomResourceOptions);
    @overload
    def Integration(resource_name: str,
                    args: IntegrationArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Integration(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    integration_name: Optional[str] = None,
                    source_arn: Optional[str] = None,
                    target_arn: Optional[str] = None,
                    additional_encryption_context: Optional[Mapping[str, str]] = None,
                    description: Optional[str] = None,
                    kms_key_id: Optional[str] = None,
                    tags: Optional[Mapping[str, str]] = None,
                    timeouts: Optional[IntegrationTimeoutsArgs] = None)
    func NewIntegration(ctx *Context, name string, args IntegrationArgs, opts ...ResourceOption) (*Integration, error)
    public Integration(string name, IntegrationArgs args, CustomResourceOptions? opts = null)
    public Integration(String name, IntegrationArgs args)
    public Integration(String name, IntegrationArgs args, CustomResourceOptions options)
    
    type: aws:redshift:Integration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IntegrationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IntegrationArgs
    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 exampleintegrationResourceResourceFromRedshiftintegration = new Aws.RedShift.Integration("exampleintegrationResourceResourceFromRedshiftintegration", new()
    {
        IntegrationName = "string",
        SourceArn = "string",
        TargetArn = "string",
        AdditionalEncryptionContext = 
        {
            { "string", "string" },
        },
        Description = "string",
        KmsKeyId = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Timeouts = new Aws.RedShift.Inputs.IntegrationTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := redshift.NewIntegration(ctx, "exampleintegrationResourceResourceFromRedshiftintegration", &redshift.IntegrationArgs{
    	IntegrationName: pulumi.String("string"),
    	SourceArn:       pulumi.String("string"),
    	TargetArn:       pulumi.String("string"),
    	AdditionalEncryptionContext: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    	KmsKeyId:    pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Timeouts: &redshift.IntegrationTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var exampleintegrationResourceResourceFromRedshiftintegration = new com.pulumi.aws.redshift.Integration("exampleintegrationResourceResourceFromRedshiftintegration", com.pulumi.aws.redshift.IntegrationArgs.builder()
        .integrationName("string")
        .sourceArn("string")
        .targetArn("string")
        .additionalEncryptionContext(Map.of("string", "string"))
        .description("string")
        .kmsKeyId("string")
        .tags(Map.of("string", "string"))
        .timeouts(IntegrationTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    exampleintegration_resource_resource_from_redshiftintegration = aws.redshift.Integration("exampleintegrationResourceResourceFromRedshiftintegration",
        integration_name="string",
        source_arn="string",
        target_arn="string",
        additional_encryption_context={
            "string": "string",
        },
        description="string",
        kms_key_id="string",
        tags={
            "string": "string",
        },
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const exampleintegrationResourceResourceFromRedshiftintegration = new aws.redshift.Integration("exampleintegrationResourceResourceFromRedshiftintegration", {
        integrationName: "string",
        sourceArn: "string",
        targetArn: "string",
        additionalEncryptionContext: {
            string: "string",
        },
        description: "string",
        kmsKeyId: "string",
        tags: {
            string: "string",
        },
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:redshift:Integration
    properties:
        additionalEncryptionContext:
            string: string
        description: string
        integrationName: string
        kmsKeyId: string
        sourceArn: string
        tags:
            string: string
        targetArn: string
        timeouts:
            create: string
            delete: string
            update: string
    

    Integration 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 Integration resource accepts the following input properties:

    IntegrationName string
    Name of the integration.
    SourceArn string
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    TargetArn string

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    AdditionalEncryptionContext Dictionary<string, string>
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    Description string
    Description of the integration.
    KmsKeyId string
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    Tags Dictionary<string, string>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IntegrationTimeouts
    IntegrationName string
    Name of the integration.
    SourceArn string
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    TargetArn string

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    AdditionalEncryptionContext map[string]string
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    Description string
    Description of the integration.
    KmsKeyId string
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    Tags map[string]string
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Timeouts IntegrationTimeoutsArgs
    integrationName String
    Name of the integration.
    sourceArn String
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    targetArn String

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    additionalEncryptionContext Map<String,String>
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    description String
    Description of the integration.
    kmsKeyId String
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    tags Map<String,String>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IntegrationTimeouts
    integrationName string
    Name of the integration.
    sourceArn string
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    targetArn string

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    additionalEncryptionContext {[key: string]: string}
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    description string
    Description of the integration.
    kmsKeyId string
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    tags {[key: string]: string}
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IntegrationTimeouts
    integration_name str
    Name of the integration.
    source_arn str
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    target_arn str

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    additional_encryption_context Mapping[str, str]
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    description str
    Description of the integration.
    kms_key_id str
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    tags Mapping[str, str]
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts IntegrationTimeoutsArgs
    integrationName String
    Name of the integration.
    sourceArn String
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    targetArn String

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    additionalEncryptionContext Map<String>
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    description String
    Description of the integration.
    kmsKeyId String
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    tags Map<String>
    Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeouts Property Map

    Outputs

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

    Arn string
    ARN of the 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
    ARN of the 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
    ARN of the 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
    ARN of the 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
    ARN of the 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
    ARN of the 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 Integration Resource

    Get an existing Integration 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?: IntegrationState, opts?: CustomResourceOptions): Integration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_encryption_context: Optional[Mapping[str, str]] = None,
            arn: Optional[str] = None,
            description: Optional[str] = None,
            integration_name: Optional[str] = None,
            kms_key_id: Optional[str] = None,
            source_arn: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            target_arn: Optional[str] = None,
            timeouts: Optional[IntegrationTimeoutsArgs] = None) -> Integration
    func GetIntegration(ctx *Context, name string, id IDInput, state *IntegrationState, opts ...ResourceOption) (*Integration, error)
    public static Integration Get(string name, Input<string> id, IntegrationState? state, CustomResourceOptions? opts = null)
    public static Integration get(String name, Output<String> id, IntegrationState state, CustomResourceOptions options)
    resources:  _:    type: aws:redshift:Integration    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    AdditionalEncryptionContext Dictionary<string, string>
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    Arn string
    ARN of the Integration.
    Description string
    Description of the integration.
    IntegrationName string
    Name of the integration.
    KmsKeyId string
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    SourceArn string
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    Tags Dictionary<string, string>
    Key-value map of resource tags. 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.

    TargetArn string

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    Timeouts IntegrationTimeouts
    AdditionalEncryptionContext map[string]string
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    Arn string
    ARN of the Integration.
    Description string
    Description of the integration.
    IntegrationName string
    Name of the integration.
    KmsKeyId string
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    SourceArn string
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    Tags map[string]string
    Key-value map of resource tags. 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.

    TargetArn string

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    Timeouts IntegrationTimeoutsArgs
    additionalEncryptionContext Map<String,String>
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    arn String
    ARN of the Integration.
    description String
    Description of the integration.
    integrationName String
    Name of the integration.
    kmsKeyId String
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    sourceArn String
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    tags Map<String,String>
    Key-value map of resource tags. 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.

    targetArn String

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    timeouts IntegrationTimeouts
    additionalEncryptionContext {[key: string]: string}
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    arn string
    ARN of the Integration.
    description string
    Description of the integration.
    integrationName string
    Name of the integration.
    kmsKeyId string
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    sourceArn string
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    tags {[key: string]: string}
    Key-value map of resource tags. 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.

    targetArn string

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    timeouts IntegrationTimeouts
    additional_encryption_context Mapping[str, str]
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    arn str
    ARN of the Integration.
    description str
    Description of the integration.
    integration_name str
    Name of the integration.
    kms_key_id str
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    source_arn str
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    tags Mapping[str, str]
    Key-value map of resource tags. 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.

    target_arn str

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    timeouts IntegrationTimeoutsArgs
    additionalEncryptionContext Map<String>
    Set of non-secret key–value pairs that contains additional contextual information about the data. For more information, see the User Guide. You can only include this parameter if you specify the kms_key_id parameter.
    arn String
    ARN of the Integration.
    description String
    Description of the integration.
    integrationName String
    Name of the integration.
    kmsKeyId String
    KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, Redshift uses a default AWS owned key. You can only include this parameter if source_arn references a DynamoDB table.
    sourceArn String
    ARN of the database to use as the source for replication. You can specify a DynamoDB table or an S3 bucket.
    tags Map<String>
    Key-value map of resource tags. 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.

    targetArn String

    ARN of the Redshift data warehouse to use as the target for replication.

    The following arguments are optional:

    timeouts Property Map

    Supporting Types

    IntegrationTimeouts, IntegrationTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import Redshift Integration using the arn. For example:

    $ pulumi import aws:redshift/integration:Integration example arn:aws:redshift:us-west-2:123456789012:integration:abcdefgh-0000-1111-2222-123456789012
    

    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.
    aws logo
    AWS v6.78.0 published on Thursday, Apr 24, 2025 by Pulumi