Module Values.CacheSecurityGroupSource

Represents the output of one of the following operations: AuthorizeCacheSecurityGroupIngress CreateCacheSecurityGroup RevokeCacheSecurityGroupIngress

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

    The Amazon account ID of the cache security group owner.

    *)
  2. cacheSecurityGroupName : String_.t option;
    (*

    The name of the cache security group.

    *)
  3. description : String_.t option;
    (*

    The description of the cache security group.

    *)
  4. eC2SecurityGroups : EC2SecurityGroupList.t option;
    (*

    A list of Amazon EC2 security groups that are associated with this cache security group.

    *)
  5. aRN : String_.t option;
    (*

    The ARN of the cache security group,

    *)
}
Sourceval make : ?ownerId:??? -> ?cacheSecurityGroupName:??? -> ?description:??? -> ?eC2SecurityGroups:??? -> ?aRN:??? -> 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