rs

Redshift

DatabasesAWS
General

General information about the service.

Description

Amazon Redshift is a fast, fully managed cloud data warehouse for analytics at scale.

Service Namespace

AWS::Redshift::Cluster

ARN Pattern

arn:aws:redshift:{region}:{account}:cluster:{cluster-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

rs-

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_redshift_cluster" "main" {
2 cluster_identifier = "rs-${var.environment}"
3 database_name = "mydb"
4 master_username = var.master_username
5 master_password = var.master_password
6 node_type = "dc2.large"
7 cluster_type = "single-node"
8}
Utilities

Utilities to support app deployment or configuration.