Module Values.EnvironmentTemplateSource

The environment template data.

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

    The Amazon Resource Name (ARN) of the environment template.

    *)
  2. createdAt : Timestamp.t option;
    (*

    The time when the environment template was created.

    *)
  3. description : Description.t option;
    (*

    A description of the environment template.

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

    The name of the environment template as displayed in the developer interface.

    *)
  5. encryptionKey : Arn.t option;
    (*

    The customer provided encryption key for the environment template.

    *)
  6. lastModifiedAt : Timestamp.t option;
    (*

    The time when the environment template was last modified.

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

    The name of the environment template.

    *)
  8. provisioning : Provisioning.t option;
    (*

    When included, indicates that the environment template is for customer provisioned and managed infrastructure.

    *)
  9. recommendedVersion : FullTemplateVersionNumber.t option;
    (*

    The ID of the recommended version of the environment template.

    *)
}
Sourceval make : ?arn:??? -> ?createdAt:??? -> ?description:??? -> ?displayName:??? -> ?encryptionKey:??? -> ?lastModifiedAt:??? -> ?name:??? -> ?provisioning:??? -> ?recommendedVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EnvironmentTemplateArn.t | `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