Module Values.InputSecurityGroupSource

An Input Security Group

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    Unique ARN of Input Security Group

    *)
  2. id : string option;
    (*

    The Id of the Input Security Group

    *)
  3. inputs : string list option;
    (*

    The list of inputs currently using this Input Security Group.

    *)
  4. state : InputSecurityGroupState.t option;
    (*

    The current state of the Input Security Group.

    *)
  5. tags : Tags.t option;
    (*

    A collection of key-value pairs.

    *)
  6. whitelistRules : InputWhitelistRule.t list option;
    (*

    Whitelist rules and their sync status

    *)
  7. channels : string list option;
    (*

    The list of channels currently using this Input Security Group as their channel security group.

    *)
}
Sourceval make : ?arn:??? -> ?id:??? -> ?inputs:??? -> ?state:??? -> ?tags:??? -> ?whitelistRules:??? -> ?channels:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of string | `Structure of (string * [> `String of string ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) 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