Module Values_1.DescribeAppResponseSource

Describes the app.

Sourcetype nonrec t = {
  1. appArn : Values_0.AppArn.t option;
    (*

    The Amazon Resource Name (ARN) of the app.

    *)
  2. appType : Values_0.AppType.t option;
    (*

    The type of app.

    *)
  3. appName : Values_0.AppName.t option;
    (*

    The name of the app.

    *)
  4. domainId : Values_0.DomainId.t option;
    (*

    The domain ID.

    *)
  5. userProfileName : Values_0.UserProfileName.t option;
    (*

    The user profile name.

    *)
  6. spaceName : Values_0.SpaceName.t option;
    (*

    The name of the space. If this value is not set, then UserProfileName must be set.

    *)
  7. status : Values_0.AppStatus.t option;
    (*

    The status.

    *)
  8. effectiveTrustedIdentityPropagationStatus : Values_0.FeatureStatus.t option;
    (*

    The effective status of Trusted Identity Propagation (TIP) for this application. When enabled, user identities from IAM Identity Center are being propagated through the application to TIP enabled Amazon Web Services services. When disabled, standard IAM role-based access is used.

    *)
  9. recoveryMode : Values_0.Boolean.t option;
    (*

    Indicates whether the application is launched in recovery mode.

    *)
  10. lastHealthCheckTimestamp : Values_0.Timestamp.t option;
    (*

    The timestamp of the last health check.

    *)
  11. lastUserActivityTimestamp : Values_0.Timestamp.t option;
    (*

    The timestamp of the last user's activity. LastUserActivityTimestamp is also updated when SageMaker AI performs health checks without user activity. As a result, this value is set to the same value as LastHealthCheckTimestamp.

    *)
  12. creationTime : Values_0.Timestamp.t option;
    (*

    The creation time of the application. After an application has been shut down for 24 hours, SageMaker AI deletes all metadata for the application. To be considered an update and retain application metadata, applications must be restarted within 24 hours after the previous application has been shut down. After this time window, creation of an application is considered a new application rather than an update of the previous application.

    *)
  13. failureReason : Values_0.FailureReason.t option;
    (*

    The failure reason.

    *)
  14. resourceSpec : Values_0.ResourceSpec.t option;
    (*

    The instance type and the Amazon Resource Name (ARN) of the SageMaker AI image created on the instance.

    *)
  15. builtInLifecycleConfigArn : Values_0.StudioLifecycleConfigArn.t option;
    (*

    The lifecycle configuration that runs before the default lifecycle configuration

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?appArn:??? -> ?appType:??? -> ?appName:??? -> ?domainId:??? -> ?userProfileName:??? -> ?spaceName:??? -> ?status:??? -> ?effectiveTrustedIdentityPropagationStatus:??? -> ?recoveryMode:??? -> ?lastHealthCheckTimestamp:??? -> ?lastUserActivityTimestamp:??? -> ?creationTime:??? -> ?failureReason:??? -> ?resourceSpec:??? -> ?builtInLifecycleConfigArn:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `String of Values_0.AppArn.t | `Structure of (string * [> `Enum of string | `String of string ]) list | `Timestamp of Values_0.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