Module Values.NetworkMigrationDefinitionSource

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

Sourcetype nonrec t = {
  1. arn : ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the network migration definition.

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

    The unique identifier of the network migration definition.

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

    The name of the network migration definition.

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

    A description of the network migration definition.

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

    A list of source configurations for the network migration.

    *)
  6. targetS3Configuration : TargetS3Configuration.t option;
    (*

    The S3 configuration for storing the target network artifacts.

    *)
  7. targetNetwork : TargetNetwork.t option;
    (*

    The target network configuration including topology and CIDR ranges.

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

    The target deployment configuration for the migrated network.

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

    The timestamp when the network migration definition was created.

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

    The timestamp when the network migration definition was last updated.

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

    Tags assigned to the network migration definition.

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

    Scope tags for the network migration definition.

    *)
}
Sourcetype nonrec error = [
  1. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?networkMigrationDefinitionID:??? -> ?name:??? -> ?description:??? -> ?sourceConfigurations:??? -> ?targetS3Configuration:??? -> ?targetNetwork:??? -> ?targetDeployment:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?tags:??? -> ?scopeTags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ServiceQuotaExceededException of ServiceQuotaExceededException.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 [> `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 ARN.t | `Structure of (string * [> `Enum of string | `String of S3BucketName.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