Module Values.HostedConfigurationVersionSummarySource

Information about the configuration.

Sourcetype nonrec t = {
  1. applicationId : Id.t option;
    (*

    The application ID.

    *)
  2. configurationProfileId : Id.t option;
    (*

    The configuration profile ID.

    *)
  3. versionNumber : Integer.t option;
    (*

    The configuration version.

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

    A description of the configuration.

    *)
  5. contentType : StringWithLengthBetween1And255.t option;
    (*

    A standard MIME type describing the format of the configuration content. For more information, see Content-Type.

    *)
  6. versionLabel : VersionLabel.t option;
    (*

    A user-defined label for an AppConfig hosted configuration version.

    *)
  7. kmsKeyArn : Arn.t option;
    (*

    The Amazon Resource Name of the Key Management Service key that was used to encrypt this specific version of the configuration data in the AppConfig hosted configuration store.

    *)
}
Sourceval make : ?applicationId:??? -> ?configurationProfileId:??? -> ?versionNumber:??? -> ?description:??? -> ?contentType:??? -> ?versionLabel:??? -> ?kmsKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of Id.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