Module Values_1.CreateDBSecurityGroupMessageSource

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

    The name for the DB security group. This value is stored as a lowercase string. Constraints: Must be 1 to 255 letters, numbers, or hyphens. First character must be a letter Can't end with a hyphen or contain two consecutive hyphens Must not be "Default" Example: mysecuritygroup

    *)
  2. dBSecurityGroupDescription : Values_0.String_.t;
    (*

    The description for the DB security group.

    *)
  3. tags : Values_0.TagList.t option;
    (*

    Tags to assign to the DB security group.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> dBSecurityGroupName:Values_0.String_.t -> dBSecurityGroupDescription:Values_0.String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.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