Module Values.CreateCacheSecurityGroupMessageSource

Represents the input of a CreateCacheSecurityGroup operation.

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

    A name for the cache security group. This value is stored as a lowercase string. Constraints: Must contain no more than 255 alphanumeric characters. Cannot be the word "Default". Example: mysecuritygroup

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

    A description for the cache security group.

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

    A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

    *)
}
Sourceval context_ : string
Sourceval make : ?tags:??? -> cacheSecurityGroupName:String_.t -> description:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `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