Module Values.GetTemplateResponseSource

Returns the details for the requested template. Other template APIs are: CreateTemplate DeleteTemplate ListTemplates UpdateTemplate

Sourcetype nonrec t = {
  1. templateId : TemplateId.t option;
    (*

    A unique identifier of a template.

    *)
  2. templateArn : TemplateArn.t option;
    (*

    The Amazon Resource Name (ARN) of the template.

    *)
  3. name : TemplateName.t option;
    (*

    The name of the template.

    *)
  4. description : TemplateDescription.t option;
    (*

    A brief description of the template.

    *)
  5. layoutConfiguration : LayoutConfiguration.t option;
    (*

    Configuration of layouts associated to the template.

    *)
  6. requiredFields : RequiredFieldList.t option;
    (*

    A list of fields that must contain a value for a case to be successfully created with this template.

    *)
  7. tags : Tags.t option;
    (*

    A map of of key-value pairs that represent tags on a resource. Tags are used to organize, track, or control access for this resource.

    *)
  8. status : TemplateStatus.t option;
    (*

    The status of the template.

    *)
  9. deleted : Deleted.t option;
    (*

    Denotes whether or not the resource has been deleted.

    *)
  10. createdTime : CreatedTime.t option;
    (*

    Timestamp at which the resource was created.

    *)
  11. lastModifiedTime : LastModifiedTime.t option;
    (*

    Timestamp at which the resource was created or last modified.

    *)
  12. rules : TemplateCaseRuleList.t option;
    (*

    A list of case rules (also known as case field conditions) on a template.

    *)
  13. tagPropagationConfigurations : TagPropagationConfigurationList.t option;
    (*

    Defines tag propagation configuration for resources created within a domain. Tags specified here will be automatically applied to resources being created for the specified resource type.

    *)
}
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 : ?templateId:??? -> ?templateArn:??? -> ?name:??? -> ?description:??? -> ?layoutConfiguration:??? -> ?requiredFields:??? -> ?tags:??? -> ?status:??? -> ?deleted:??? -> ?createdTime:??? -> ?lastModifiedTime:??? -> ?rules:??? -> ?tagPropagationConfigurations:??? -> 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 * [> `Boolean of Deleted.t | `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `Map of ([> `String of MutableTagKey.t ] * [> `String of TagValueString.t ]) list | `String of FieldId.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of TemplateId.t | `Structure of (string * [> `String of LayoutId.t ]) list | `Timestamp of CreatedTime.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