Module Values.NetworkMigrationDeployedStackDetailsSource

Details about a CloudFormation stack that has been deployed as part of the network migration.

Sourcetype nonrec t = {
  1. status : NetworkMigrationDeployedStackStatus.t option;
    (*

    The current status of the deployed stack.

    *)
  2. stackPhysicalID : PhysicalID.t option;
    (*

    The physical ID of the CloudFormation stack.

    *)
  3. stackLogicalID : LogicalID.t option;
    (*

    The logical ID of the stack.

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

    The ID of the segment that this stack was deployed for.

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

    The target AWS account where the stack was deployed.

    *)
  6. failedResources : NetworkMigrationFailedResourcesList.t option;
    (*

    A list of resources that failed to deploy.

    *)
}
Sourceval make : ?status:??? -> ?stackPhysicalID:??? -> ?stackLogicalID:??? -> ?segmentID:??? -> ?targetAccount:??? -> ?failedResources:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of LogicalID.t ]) list ] list | `String of PhysicalID.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