EasyManuals Logo

Amazon Redshift User Manual

Amazon Redshift
131 pages
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Page #35 background imageLoading...
Page #35 background image
Groups(request);
printResultSubnetGroups(result);
}
private static void printResultSubnetGroups(DescribeClusterSubnetGroupsResult
result)
{
if (result == null)
{
System.out.println("\nDescribe cluster subnet groups result is
null.");
return;
}
for (ClusterSubnetGroup group : result.getClusterSubnetGroups())
{
printResultSubnetGroup(group);
}
}
private static void printResultSubnetGroup(ClusterSubnetGroup group) {
System.out.format("Name: %s, Description: %s\n", group.getClusterSubnet
GroupName(), group.getDescription());
for (Subnet subnet : group.getSubnets()) {
System.out.format(" Subnet: %s, %s, %s\n", subnet.getSubnetIdenti
fier(),
subnet.getSubnetAvailabilityZone().getName(), subnet.getSub
netStatus());
}
}
}
Manage Cluster Subnet Groups Using Amazon Redshift CLI
and API
You can use the following Amazon Redshift CLI operations to manage cluster subnet groups.
create-cluster-subnet-group
delete-cluster-subnet-group
describe-cluster-subnet-groups
modify-cluster-subnet-group
You can use the following Amazon Redshift APIs to manage cluster subnet groups.
CreateClusterSubnetGroup
DeleteClusterSubnetGroup
DescribeClusterSubnetGroups
ModifyClusterSubnetGroup
API Version 2012-12-01
31
Amazon Redshift Management Guide
Cluster Subnet Groups

Table of Contents

Questions and Answers:

Question and Answer IconNeed help?

Do you have a question about the Amazon Redshift and is the answer not in the manual?

Amazon Redshift Specifications

General IconGeneral
ProviderAmazon Web Services (AWS)
Query LanguageSQL
Data StorageColumnar storage
SecurityEncryption at rest and in transit, VPC, IAM
BackupAutomated and manual snapshots
DeploymentCloud-based
TypeCloud-based data warehouse service
Primary UseData warehousing, analytics
IntegrationIntegrates with AWS services, BI tools, and ETL tools
Pricing ModelOn-demand and reserved instance pricing
Data CompressionColumnar storage with data compression
Performance OptimizationQuery optimization

Related product manuals