Module Values.NetworkMigrationCodeGenerationArtifactSource

An artifact generated during code generation, such as a CloudFormation template or Terraform file.

Sourcetype nonrec t = {
  1. artifactID : NetworkMigrationCodeGenerationArtifactID.t option;
    (*

    The unique identifier of the artifact.

    *)
  2. artifactType : NetworkMigrationCodeGenerationArtifactType.t option;
    (*

    The type of the artifact, such as CLOUDFORMATION_TEMPLATE or TERRAFORM_MODULE.

    *)
  3. artifactSubType : NetworkMigrationCodeGenerationArtifactSubType.t option;
    (*

    The sub-type of the artifact for further classification.

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

    The logical identifier for the artifact.

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

    The S3 location where the artifact is stored.

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

    The checksum of the artifact for integrity verification.

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

    The timestamp when the artifact was created.

    *)
}
Sourceval make : ?artifactID:??? -> ?artifactType:??? -> ?artifactSubType:??? -> ?logicalID:??? -> ?outputS3Configuration:??? -> ?checksum:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of NetworkMigrationCodeGenerationArtifactID.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