Module Values.GetApplicationResponseSource

Describes the details of a specific application.

Sourcetype nonrec t = {
  1. applicationArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the application.

    *)
  2. applicationId : Identifier.t option;
    (*

    The identifier of the application.

    *)
  3. creationTime : Timestamp.t option;
    (*

    The timestamp when this application was created.

    *)
  4. deployedVersion : DeployedVersionSummary.t option;
    (*

    The version of the application that is deployed.

    *)
  5. description : EntityDescription.t option;
    (*

    The description of the application.

    *)
  6. engineType : EngineType.t option;
    (*

    The type of the target platform for the application.

    *)
  7. environmentId : Identifier.t option;
    (*

    The identifier of the runtime environment where you want to deploy the application.

    *)
  8. kmsKeyId : String_.t option;
    (*

    The identifier of a customer managed key.

    *)
  9. lastStartTime : Timestamp.t option;
    (*

    The timestamp when you last started the application. Null until the application runs for the first time.

    *)
  10. latestVersion : ApplicationVersionSummary.t option;
    (*

    The latest version of the application.

    *)
  11. listenerArns : ArnList.t option;
    (*

    The Amazon Resource Name (ARN) for the network load balancer listener created in your Amazon Web Services account. Amazon Web Services Mainframe Modernization creates this listener for you the first time you deploy an application.

    *)
  12. listenerPorts : PortList.t option;
    (*

    The port associated with the network load balancer listener created in your Amazon Web Services account.

    *)
  13. loadBalancerDnsName : String100.t option;
    (*

    The public DNS name of the load balancer created in your Amazon Web Services account.

    *)
  14. logGroups : LogGroupSummaries.t option;
    (*

    The list of log summaries. Each log summary includes the log type as well as the log group identifier. These are CloudWatch logs. Amazon Web Services Mainframe Modernization pushes the application log to CloudWatch under the customer's account.

    *)
  15. name : EntityName.t option;
    (*

    The unique identifier of the application.

    *)
  16. roleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the role associated with the application.

    *)
  17. status : ApplicationLifecycle.t option;
    (*

    The status of the application.

    *)
  18. statusReason : String_.t option;
    (*

    The reason for the reported status.

    *)
  19. tags : TagMap.t option;
    (*

    A list of tags associated with the application.

    *)
  20. targetGroupArns : ArnList.t option;
    (*

    Returns the Amazon Resource Names (ARNs) of the target groups that are attached to the network load balancer.

    *)
}
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 : ?applicationArn:??? -> ?applicationId:??? -> ?creationTime:??? -> ?deployedVersion:??? -> ?description:??? -> ?engineType:??? -> ?environmentId:??? -> ?kmsKeyId:??? -> ?lastStartTime:??? -> ?latestVersion:??? -> ?listenerArns:??? -> ?listenerPorts:??? -> ?loadBalancerDnsName:??? -> ?logGroups:??? -> ?name:??? -> ?roleArn:??? -> ?status:??? -> ?statusReason:??? -> ?tags:??? -> ?targetGroupArns:??? -> 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 * [> `Enum of string | `List of [> `Integer of Integer.t | `String of Arn.t | `Structure of (string * [> `String of LogGroupIdentifier.t ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Arn.t | `Structure of (string * [> `Enum of string | `Integer of Version.t | `String of String_.t | `Timestamp of Timestamp.t ]) list | `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