Module Values.CreateReplicationSubnetGroupMessageSource

Sourcetype nonrec t = {
  1. replicationSubnetGroupIdentifier : String_.t;
    (*

    The name for the replication subnet group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, or hyphens. Must not be "default". Example: mySubnetgroup

    *)
  2. replicationSubnetGroupDescription : String_.t;
    (*

    The description for the subnet group. Constraints: This parameter Must not contain non-printable control characters.

    *)
  3. subnetIds : SubnetIdentifierList.t;
    (*

    Two or more subnet IDs to be assigned to the subnet group.

    *)
  4. tags : TagList.t option;
    (*

    One or more tags to be assigned to the subnet group.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> replicationSubnetGroupIdentifier:String_.t -> replicationSubnetGroupDescription:String_.t -> subnetIds:SubnetIdentifierList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t