Module Values.NetworkMigrationMapperSegmentConstructSource

Represents a construct within a mapper segment. A construct is an individual infrastructure component such as a VPC, subnet, security group, route table, or other network resource that is part of the network migration.

Sourcetype nonrec t = {
  1. constructID : ConstructID.t option;
    (*

    The unique identifier of the construct.

    *)
  2. constructType : NetworkMigrationMapperSegmentConstructType.t option;
    (*

    The type of the construct, such as VPC, subnet, security group, or route table.

    *)
  3. name : SegmentConstructName.t option;
    (*

    The name of the construct.

    *)
  4. description : SegmentConstructDescription.t option;
    (*

    A description of the construct.

    *)
  5. logicalID : LogicalID.t option;
    (*

    The logical identifier for the construct in the infrastructure code.

    *)
  6. excluded : Boolean.t option;
    (*

    Whether this construct is excluded from the migration.

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

    The timestamp when the construct was created.

    *)
  8. updatedAt : Timestamp.t option;
    (*

    The timestamp when the construct was last updated.

    *)
  9. properties : ConstructProperties.t option;
    (*

    The properties and configuration of the construct.

    *)
}
Sourceval make : ?constructID:??? -> ?constructType:??? -> ?name:??? -> ?description:??? -> ?logicalID:??? -> ?excluded:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `String of ConstructPropertyKey.t ] * [> `String of MarshalledResourceDefinition.t ]) list | `String of ConstructID.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