Module Values.NetworkMigrationCodeGenerationSegmentSource

A segment of generated code representing a logical grouping of infrastructure resources.

Sourcetype nonrec t = {
  1. jobID : NetworkMigrationJobID.t option;
    (*

    The unique identifier of the code generation job.

    *)
  2. networkMigrationExecutionID : NetworkMigrationExecutionID.t option;
    (*

    The unique identifier of the network migration execution.

    *)
  3. networkMigrationDefinitionID : NetworkMigrationDefinitionID.t option;
    (*

    The unique identifier of the network migration definition.

    *)
  4. segmentID : SegmentID.t option;
    (*

    The unique identifier of the segment.

    *)
  5. segmentType : NetworkMigrationCodeGenerationSegmentType.t option;
    (*

    The type of the segment.

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

    The logical identifier for the segment.

    *)
  7. mapperSegmentID : SegmentID.t option;
    (*

    The ID of the mapper segment that this code generation segment was created from.

    *)
  8. artifacts : NetworkMigrationCodeGenerationArtifacts.t option;
    (*

    A list of artifacts generated for this segment.

    *)
  9. referencedSegments : ReferencedSegmentsList.t option;
    (*

    A list of other segments that this segment depends on or references.

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

    The timestamp when the segment was created.

    *)
}
Sourceval make : ?jobID:??? -> ?networkMigrationExecutionID:??? -> ?networkMigrationDefinitionID:??? -> ?segmentID:??? -> ?segmentType:??? -> ?logicalID:??? -> ?mapperSegmentID:??? -> ?artifacts:??? -> ?referencedSegments:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SegmentID.t | `Structure of (string * [> `Enum of string | `String of NetworkMigrationCodeGenerationArtifactID.t | `Structure of (string * [> `Enum of string | `String of S3BucketName.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of NetworkMigrationJobID.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