CreateDBInstanceMessage

public struct CreateDBInstanceMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Indicates that minor engine upgrades are applied automatically to the instance during the maintenance window. Default: true

    Declaration

    Swift

    public let autoMinorVersionUpgrade: Bool?
  • The Amazon EC2 Availability Zone that the instance is created in. Default: A random, system-chosen Availability Zone in the endpoint’s AWS Region. Example: us-east-1d Constraint: The AvailabilityZone parameter can’t be specified if the MultiAZ parameter is set to true. The specified Availability Zone must be in the same AWS Region as the current endpoint.

    Declaration

    Swift

    public let availabilityZone: String?
  • The identifier of the cluster that the instance will belong to.

    Declaration

    Swift

    public let dBClusterIdentifier: String
  • The compute and memory capacity of the instance; for example, db.r5.large.

    Declaration

    Swift

    public let dBInstanceClass: String
  • The instance identifier. This parameter is stored as a lowercase string. Constraints: Must contain from 1 to 63 letters, numbers, or hyphens. The first character must be a letter. Cannot end with a hyphen or contain two consecutive hyphens. Example: mydbinstance

    Declaration

    Swift

    public let dBInstanceIdentifier: String
  • The name of the database engine to be used for this instance. Valid value: docdb

    Declaration

    Swift

    public let engine: String
  • The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC). Format: ddd:hh24:mi-ddd:hh24:mi The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week. Valid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun Constraints: Minimum 30-minute window.

    Declaration

    Swift

    public let preferredMaintenanceWindow: String?
  • A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance. Default: 1 Valid values: 0-15

    Declaration

    Swift

    public let promotionTier: Int?
  • The tags to be assigned to the instance. You can assign up to 10 tags to an instance.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(autoMinorVersionUpgrade: Bool? = nil, availabilityZone: String? = nil, dBClusterIdentifier: String, dBInstanceClass: String, dBInstanceIdentifier: String, engine: String, preferredMaintenanceWindow: String? = nil, promotionTier: Int? = nil, tags: [Tag]? = nil)