Module Values_0.DBSecurityGroupSource

Contains the details for an Amazon RDS DB security group. This data type is used as a response element in the DescribeDBSecurityGroups action.

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

    Provides the Amazon Web Services ID of the owner of a specific DB security group.

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

    Specifies the name of the DB security group.

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

    Provides the description of the DB security group.

    *)
  4. vpcId : String_.t option;
    (*

    Provides the VpcId of the DB security group.

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

    Contains a list of EC2SecurityGroup elements.

    *)
  6. iPRanges : IPRangeList.t option;
    (*

    Contains a list of IPRange elements.

    *)
  7. dBSecurityGroupArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the DB security group.

    *)
}
Sourceval make : ?ownerId:??? -> ?dBSecurityGroupName:??? -> ?dBSecurityGroupDescription:??? -> ?vpcId:??? -> ?eC2SecurityGroups:??? -> ?iPRanges:??? -> ?dBSecurityGroupArn:??? -> 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