Module Values.NetworkMigrationMapperSegmentSource

Updates a mapper segment's configuration, such as changing its scope tags.

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

    The unique identifier of the job that created this segment.

    *)
  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 : NetworkMigrationMapperSegmentType.t option;
    (*

    The type of the segment, such as VPC, subnet, or security group.

    *)
  6. name : SegmentName.t option;
    (*

    The name of the segment.

    *)
  7. description : SegmentDescription.t option;
    (*

    A description of the segment.

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

    The logical identifier for the segment in the infrastructure code.

    *)
  9. checksum : Checksum.t option;
    (*

    The checksum of the segment data for integrity verification.

    *)
  10. outputS3Configuration : S3Configuration.t option;
    (*

    The S3 location where segment artifacts are stored.

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

    The timestamp when the segment was created.

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

    The timestamp when the segment was last updated.

    *)
  13. scopeTags : ScopeTagsMap.t option;
    (*

    Scope tags for the segment.

    *)
  14. targetAccount : AccountID.t option;
    (*

    The target AWS account where this segment will be deployed.

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

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

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ValidationException of ValidationException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?jobID:??? -> ?networkMigrationExecutionID:??? -> ?networkMigrationDefinitionID:??? -> ?segmentID:??? -> ?segmentType:??? -> ?name:??? -> ?description:??? -> ?logicalID:??? -> ?checksum:??? -> ?outputS3Configuration:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?scopeTags:??? -> ?targetAccount:??? -> ?referencedSegments:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SegmentID.t ] list | `Map of ([> `String of ScopeTagKey.t ] * [> `String of ScopeTagValue.t ]) list | `String of NetworkMigrationJobID.t | `Structure of (string * [> `Enum of string | `String of Hash.t ]) list | `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