Module Values.ComponentSummarySource

A high-level summary of a component.

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

    The Amazon Resource Name (ARN) of the component.

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

    The name of the component.

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

    The version of the component.

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

    The operating system platform of the component.

    *)
  5. supportedOsVersions : OsVersionList.t option;
    (*

    The operating system (OS) version that the component supports. If the OS information is available, Image Builder performs a prefix match against the base image OS version during image recipe creation.

    *)
  6. state : ComponentState.t option;
    (*

    Describes the current status of the component.

    *)
  7. type_ : ComponentType.t option;
    (*

    The component type specifies whether Image Builder uses the component to build the image or only to test it.

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

    The owner of the component.

    *)
  9. description : NonEmptyString.t option;
    (*

    The description of the component.

    *)
  10. changeDescription : NonEmptyString.t option;
    (*

    The change description for the current version of the component.

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

    The original creation date of the component.

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

    The tags that apply to the component.

    *)
  13. publisher : NonEmptyString.t option;
    (*

    Contains the name of the publisher if this is a third-party component. Otherwise, this property is empty.

    *)
  14. obfuscate : Boolean.t option;
    (*

    Indicates whether component source is hidden from view in the console, and from component detail results for API, CLI, or SDK operations.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?version:??? -> ?platform:??? -> ?supportedOsVersions:??? -> ?state:??? -> ?type_:??? -> ?owner:??? -> ?description:??? -> ?changeDescription:??? -> ?dateCreated:??? -> ?tags:??? -> ?publisher:??? -> ?obfuscate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of OsVersion.t ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ImageBuilderArn.t | `Structure of (string * [> `Enum of string | `String of NonEmptyString.t ]) list ]) 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