AWS Fundamentals Logo
AWS Fundamentals
AWS::Redshift::Integration

Redshift Integration

Integration from a source AWS service to a Redshift cluster

Properties

6 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
SourceArn
string
RequiredCreate-only
TargetArn
string
RequiredCreate-only
AdditionalEncryptionContext
EncryptionContextMap
Create-only
IntegrationName
string
KMSKeyId
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreateTimestringThe time (UTC) when the integration was created.
IntegrationArnstringThe Amazon Resource Name (ARN) of the integration.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Redshift::Integration

Resources:
  MyResource:
    Type: AWS::Redshift::Integration
    Properties:
      SourceArn: "arn:aws:service:region:account:resource"
      TargetArn: "arn:aws:service:region:account:resource"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

redshift:CreateIntegrationredshift:DescribeIntegrationsredshift:CreateTagsredshift:DescribeTagsredshift:DescribeClustersredshift:CreateInboundIntegrationredshift-serverless:ListNamespaceskms:CreateGrant

read

redshift:DescribeIntegrationsredshift:DescribeTags

update

redshift:DescribeIntegrationsredshift:ModifyIntegrationredshift:CreateTagsredshift:DeleteTagsredshift:DescribeClustersredshift:DescribeTagsredshift-serverless:ListNamespaces

delete

redshift:DeleteTagsredshift:DeleteIntegrationredshift:DescribeIntegrations

list

redshift:DescribeTagsredshift:DescribeIntegrations

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceRedshift
Properties8
Required2
TaggingSupported
Primary IDIntegrationArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

SourceArnTargetArnKMSKeyIdAdditionalEncryptionContext

External Links