Module Values.SecurityDetailsSource

Information about endpoints.

Sourcetype nonrec t = {
  1. subnetIds : SubnetList.t;
    (*

    A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.

    *)
  2. securityGroupIds : SecurityGroupIdList.t;
    (*

    The security groups to attach to the elastic network interfaces.

    *)
  3. roleArn : RoleArn.t;
    (*

    ARN to a role needed for connecting streams to your instances.

    *)
}
Sourceval context_ : string
Sourceval make : subnetIds:SubnetList.t -> securityGroupIds:SecurityGroupIdList.t -> roleArn:RoleArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of RoleArn.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