Module Values.NetworkMigrationDefinitionSummarySource

A summary of a network migration definition.

Sourcetype nonrec t = {
  1. networkMigrationDefinitionID : NetworkMigrationDefinitionID.t option;
    (*

    The unique identifier of the network migration definition.

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

    The name of the network migration definition.

    *)
  3. sourceEnvironment : SourceEnvironment.t option;
    (*

    The source environment configuration.

    *)
  4. arn : ARN.t option;
    (*

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

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

    Tags assigned to the network migration definition.

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

    Scope tags for the network migration definition.

    *)
}
Sourceval make : ?networkMigrationDefinitionID:??? -> ?name:??? -> ?sourceEnvironment:??? -> ?arn:??? -> ?tags:??? -> ?scopeTags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of NetworkMigrationDefinitionID.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