Module Values.VlanSource

The VLANs that Amazon EVS creates during environment creation.

Sourcetype nonrec t = {
  1. vlanId : VlanId.t option;
    (*

    The unique ID of the VLAN.

    *)
  2. cidr : Cidr.t option;
    (*

    The CIDR block of the VLAN. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24.

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

    The availability zone of the VLAN.

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

    The VMware VCF traffic type that is carried over the VLAN. For example, a VLAN with a functionName of hcx is being used to carry VMware HCX traffic.

    *)
  5. subnetId : SubnetId.t option;
    (*

    The unique ID of the VLAN subnet.

    *)
  6. createdAt : Timestamp.t option;
    (*

    The date and time that the VLAN was created.

    *)
  7. modifiedAt : Timestamp.t option;
    (*

    The date and time that the VLAN was modified.

    *)
  8. vlanState : VlanState.t option;
    (*

    The state of the VLAN.

    *)
  9. stateDetails : StateDetails.t option;
    (*

    The state details of the VLAN.

    *)
  10. eipAssociations : EipAssociationList.t option;
    (*

    An array of Elastic IP address associations.

    *)
  11. isPublic : Boolean.t option;
    (*

    Determines if the VLAN that Amazon EVS provisions is public or private.

    *)
  12. networkAclId : NetworkAclId.t option;
    (*

    A unique ID for a network access control list.

    *)
}
Sourceval make : ?vlanId:??? -> ?cidr:??? -> ?availabilityZone:??? -> ?functionName:??? -> ?subnetId:??? -> ?createdAt:??? -> ?modifiedAt:??? -> ?vlanState:??? -> ?stateDetails:??? -> ?eipAssociations:??? -> ?isPublic:??? -> ?networkAclId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of VlanId.t | `List of [> `Structure of (string * [> `String of AssociationId.t ]) list ] list | `String of Cidr.t | `Timestamp of Timestamp.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