CreateClusterSubnetGroupMessage

public struct CreateClusterSubnetGroupMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name for the subnet group. Amazon Redshift stores the value as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters or hyphens. Must not be “Default”. Must be unique for all subnet groups that are created by your AWS account. Example: examplesubnetgroup

    Declaration

    Swift

    public let clusterSubnetGroupName: String
  • A description for the subnet group.

    Declaration

    Swift

    public let description: String
  • An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.

    Declaration

    Swift

    public let subnetIds: [String]
  • A list of tag instances.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(clusterSubnetGroupName: String, description: String, subnetIds: [String], tags: [Tag]? = nil)