Module Values_0.CommandSummarySource

Summary information about a particular command resource.

Sourcetype nonrec t = {
  1. commandArn : CommandArn.t option;
    (*

    The Amazon Resource Name (ARN) of the command.

    *)
  2. commandId : CommandId.t option;
    (*

    The unique identifier of the command.

    *)
  3. displayName : DisplayName.t option;
    (*

    The display name of the command.

    *)
  4. deprecated : DeprecationFlag.t option;
    (*

    Indicates whether the command has been deprecated.

    *)
  5. createdAt : DateType.t option;
    (*

    The timestamp, when the command was created.

    *)
  6. lastUpdatedAt : DateType.t option;
    (*

    The timestamp, when the command was last updated.

    *)
  7. pendingDeletion : BooleanWrapperObject.t option;
    (*

    Indicates whether the command is pending deletion.

    *)
}
Sourceval make : ?commandArn:??? -> ?commandId:??? -> ?displayName:??? -> ?deprecated:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?pendingDeletion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DeprecationFlag.t | `String of CommandArn.t | `Timestamp of DateType.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