Module Values.ImageSummarySource

An image summary.

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

    The Amazon Resource Name (ARN) of the image.

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

    The name of the image.

    *)
  3. type_ : ImageType.t option;
    (*

    Specifies whether this image produces an AMI or a container image.

    *)
  4. version : VersionNumber.t option;
    (*

    The version of the image.

    *)
  5. platform : Platform.t option;
    (*

    The image operating system platform, such as Linux or Windows.

    *)
  6. osVersion : OsVersion.t option;
    (*

    The operating system version of the instances that launch from this image. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.

    *)
  7. state : ImageState.t option;
    (*

    The state of the image.

    *)
  8. owner : NonEmptyString.t option;
    (*

    The owner of the image.

    *)
  9. dateCreated : DateTime.t option;
    (*

    The date on which Image Builder created this image.

    *)
  10. outputResources : OutputResources.t option;
    (*

    The output resources that Image Builder produced when it created this image.

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

    The tags that apply to this image.

    *)
  12. buildType : BuildType.t option;
    (*

    Indicates the type of build that created this image. The build can be initiated in the following ways: USER_INITIATED – A manual pipeline build request. SCHEDULED – A pipeline build initiated by a cron expression in the Image Builder pipeline, or from EventBridge. IMPORT – A VM import created the image to use as the base image for the recipe. IMPORT_ISO – An ISO disk import created the image.

    *)
  13. imageSource : ImageSource.t option;
    (*

    The origin of the base image that Image Builder used to build this image.

    *)
  14. deprecationTime : DateTimeTimestamp.t option;
    (*

    The time when deprecation occurs for an image resource. This can be a past or future date.

    *)
  15. lifecycleExecutionId : LifecycleExecutionId.t option;
    (*

    Identifies the last runtime instance of the lifecycle policy to take action on the image.

    *)
  16. loggingConfiguration : ImageLoggingConfiguration.t option;
    (*

    The logging configuration that's defined for the image.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?type_:??? -> ?version:??? -> ?platform:??? -> ?osVersion:??? -> ?state:??? -> ?owner:??? -> ?dateCreated:??? -> ?outputResources:??? -> ?tags:??? -> ?buildType:??? -> ?imageSource:??? -> ?deprecationTime:??? -> ?lifecycleExecutionId:??? -> ?loggingConfiguration:??? -> 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 ImageBuilderArn.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `String of NonEmptyString.t ] list | `String of NonEmptyString.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ]) list ] list | `String of NonEmptyString.t ]) list | `Timestamp of DateTimeTimestamp.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