# -*- mode: snippet -*-
# name: aws-redshift-clustersubnetgroup
# key: redshift-clustersubnetgroup
# group: cloudformation
# expand-env: ((yas/indent-line 'auto) (yas/wrap-around-region 't))
# --
"${1:redshiftClusterSubnetGroup}": {
  "Type": "AWS::Redshift::ClusterSubnetGroup",
  "Properties": {
    "Description": "$2",
    "SubnetIds": [ "$3" ]
  }
}$0
