Module Values.AwsRdsDbSecurityGroupDetailsSource

Provides information about an Amazon RDS DB security group.

Sourcetype nonrec t = {
  1. dbSecurityGroupArn : NonEmptyString.t option;
    (*

    The ARN for the DB security group.

    *)
  2. dbSecurityGroupDescription : NonEmptyString.t option;
    (*

    Provides the description of the DB security group.

    *)
  3. dbSecurityGroupName : NonEmptyString.t option;
    (*

    Specifies the name of the DB security group.

    *)
  4. ec2SecurityGroups : AwsRdsDbSecurityGroupEc2SecurityGroups.t option;
    (*

    Contains a list of EC2 security groups.

    *)
  5. ipRanges : AwsRdsDbSecurityGroupIpRanges.t option;
    (*

    Contains a list of IP ranges.

    *)
  6. ownerId : NonEmptyString.t option;
    (*

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

    *)
  7. vpcId : NonEmptyString.t option;
    (*

    Provides VPC ID associated with the DB security group.

    *)
}
Sourceval make : ?dbSecurityGroupArn:??? -> ?dbSecurityGroupDescription:??? -> ?dbSecurityGroupName:??? -> ?ec2SecurityGroups:??? -> ?ipRanges:??? -> ?ownerId:??? -> ?vpcId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.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