Module Values.DescribeComponentResponseSource

Retrieves metadata for a version of a component.

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

    The ARN of the component version.

    *)
  2. componentName : ComponentNameString.t option;
    (*

    The name of the component.

    *)
  3. componentVersion : ComponentVersionString.t option;
    (*

    The version of the component.

    *)
  4. creationTimestamp : Timestamp.t option;
    (*

    The time at which the component was created, expressed in ISO 8601 format.

    *)
  5. publisher : PublisherString.t option;
    (*

    The publisher of the component version.

    *)
  6. description : DescriptionString.t option;
    (*

    The description of the component version.

    *)
  7. status : CloudComponentStatus.t option;
    (*

    The status of the component version in IoT Greengrass V2. This status is different from the status of the component on a core device.

    *)
  8. platforms : ComponentPlatformList.t option;
    (*

    The platforms that the component version supports.

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

    A list of key-value pairs that contain metadata for the resource. For more information, see Tag your resources in the IoT Greengrass V2 Developer Guide.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?componentName:??? -> ?componentVersion:??? -> ?creationTimestamp:??? -> ?publisher:??? -> ?description:??? -> ?status:??? -> ?platforms:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of NonEmptyString.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ComponentVersionARN.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of NonEmptyString.t ] * [> `String of NonEmptyString.t ]) list | `String of NonEmptyString.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