CreateDBSubnetGroupMessage

public struct CreateDBSubnetGroupMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The description for the subnet group.

    Declaration

    Swift

    public let dBSubnetGroupDescription: String
  • The name for the subnet group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 letters, numbers, periods, underscores, spaces, or hyphens. Must not be default. Example: mySubnetgroup

    Declaration

    Swift

    public let dBSubnetGroupName: String
  • The Amazon EC2 subnet IDs for the subnet group.

    Declaration

    Swift

    public let subnetIds: [String]
  • The tags to be assigned to the subnet group.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(dBSubnetGroupDescription: String, dBSubnetGroupName: String, subnetIds: [String], tags: [Tag]? = nil)