Module Values.CreateNetworkMigrationDefinitionRequestSource

Creates a new network migration definition that specifies the source and target network configuration for a migration.

Sourcetype nonrec t = {
  1. name : NetworkMigrationDefinitionName.t;
    (*

    The name of the network migration definition.

    *)
  2. description : NetworkMigrationDefinitionDescription.t option;
    (*

    A description of the network migration definition.

    *)
  3. sourceConfigurations : SourceConfigurationList.t option;
    (*

    A list of source configurations for the network migration.

    *)
  4. targetS3Configuration : TargetS3Configuration.t;
    (*

    The S3 configuration for storing the target network artifacts.

    *)
  5. targetNetwork : TargetNetwork.t;
    (*

    The target network configuration including topology and CIDR ranges.

    *)
  6. targetDeployment : TargetDeployment.t option;
    (*

    The target deployment configuration for the migrated network.

    *)
  7. tags : TagsMap.t option;
    (*

    Tags to assign to the network migration definition.

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

    Scope tags for the network migration definition to control access and organization.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?sourceConfigurations:??? -> ?targetDeployment:??? -> ?tags:??? -> ?scopeTags:??? -> name:NetworkMigrationDefinitionName.t -> targetS3Configuration:TargetS3Configuration.t -> targetNetwork:TargetNetwork.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of S3BucketName.t ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NetworkMigrationDefinitionName.t | `Structure of (string * [> `Enum of string | `String of S3BucketName.t ]) list ]) 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