Module Values.PlatformSummarySource

Summary information about a platform version.

Sourcetype nonrec t = {
  1. platformArn : PlatformArn.t option;
    (*

    The ARN of the platform version.

    *)
  2. platformOwner : PlatformOwner.t option;
    (*

    The AWS account ID of the person who created the platform version.

    *)
  3. platformStatus : PlatformStatus.t option;
    (*

    The status of the platform version. You can create an environment from the platform version once it is ready.

    *)
  4. platformCategory : PlatformCategory.t option;
    (*

    The category of platform version.

    *)
  5. operatingSystemName : OperatingSystemName.t option;
    (*

    The operating system used by the platform version.

    *)
  6. operatingSystemVersion : OperatingSystemVersion.t option;
    (*

    The version of the operating system used by the platform version.

    *)
  7. supportedTierList : SupportedTierList.t option;
    (*

    The tiers in which the platform version runs.

    *)
  8. supportedAddonList : SupportedAddonList.t option;
    (*

    The additions associated with the platform version.

    *)
  9. platformLifecycleState : PlatformLifecycleState.t option;
    (*

    The state of the platform version in its lifecycle. Possible values: recommended | empty If an empty value is returned, the platform version is supported but isn't the recommended one for its branch.

    *)
  10. platformVersion : PlatformVersion.t option;
    (*

    The version string of the platform version.

    *)
  11. platformBranchName : BranchName.t option;
    (*

    The platform branch to which the platform version belongs.

    *)
  12. platformBranchLifecycleState : PlatformBranchLifecycleState.t option;
    (*

    The state of the platform version's branch in its lifecycle. Possible values: beta | supported | deprecated | retired

    *)
}
Sourceval make : ?platformArn:??? -> ?platformOwner:??? -> ?platformStatus:??? -> ?platformCategory:??? -> ?operatingSystemName:??? -> ?operatingSystemVersion:??? -> ?supportedTierList:??? -> ?supportedAddonList:??? -> ?platformLifecycleState:??? -> ?platformVersion:??? -> ?platformBranchName:??? -> ?platformBranchLifecycleState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of SupportedTier.t ] list | `String of PlatformArn.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