1package Paws::RedShift::ClusterSubnetGroup {
2  use Moose;
3  has ClusterSubnetGroupName => (is => 'ro', isa => 'Str');
4  has Description => (is => 'ro', isa => 'Str');
5  has SubnetGroupStatus => (is => 'ro', isa => 'Str');
6  has Subnets => (is => 'ro', isa => 'ArrayRef[Paws::RedShift::Subnet]');
7  has Tags => (is => 'ro', isa => 'ArrayRef[Paws::RedShift::Tag]');
8  has VpcId => (is => 'ro', isa => 'Str');
9}
101;
11