Module Values.GetEnvironmentResponseSource

Describes a specific runtime environment.

Sourcetype nonrec t = {
  1. actualCapacity : CapacityValue.t option;
    (*

    The number of instances included in the runtime environment. A standalone runtime environment has a maximum of one instance. Currently, a high availability runtime environment has a maximum of two instances.

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

    The timestamp when the runtime environment was created.

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

    The description of the runtime environment.

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

    The target platform for the runtime environment.

    *)
  5. engineVersion : EngineVersion.t option;
    (*

    The version of the runtime engine.

    *)
  6. environmentArn : Arn.t option;
    (*

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

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

    The unique identifier of the runtime environment.

    *)
  8. highAvailabilityConfig : HighAvailabilityConfig.t option;
    (*

    The desired capacity of the high availability configuration for the runtime environment.

    *)
  9. instanceType : String20.t option;
    (*

    The type of instance underlying the runtime environment.

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

    The identifier of a customer managed key.

    *)
  11. loadBalancerArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the load balancer used with the runtime environment.

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

    The name of the runtime environment. Must be unique within the account.

    *)
  13. networkType : NetworkType.t option;
    (*

    The network type supported by the runtime environment.

    *)
  14. pendingMaintenance : PendingMaintenance.t option;
    (*

    Indicates the pending maintenance scheduled on this environment.

    *)
  15. preferredMaintenanceWindow : String50.t option;
    (*

    The maintenance window for the runtime environment. If you don't provide a value for the maintenance window, the service assigns a random value.

    *)
  16. publiclyAccessible : Boolean.t option;
    (*

    Whether applications running in this runtime environment are publicly accessible.

    *)
  17. securityGroupIds : String50List.t option;
    (*

    The unique identifiers of the security groups assigned to this runtime environment.

    *)
  18. status : EnvironmentLifecycle.t option;
    (*

    The status of the runtime environment. If the Amazon Web Services Mainframe Modernization environment is missing a connection to the customer owned dependent resource, the status will be Unhealthy.

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

    The reason for the reported status.

    *)
  20. storageConfigurations : StorageConfigurationList.t option;
    (*

    The storage configurations defined for the runtime environment.

    *)
  21. subnetIds : String50List.t option;
    (*

    The unique identifiers of the subnets assigned to this runtime environment.

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

    The tags defined for this runtime environment.

    *)
  23. vpcId : String50.t option;
    (*

    The unique identifier for the VPC used with this runtime environment.

    *)
}
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 : ?actualCapacity:??? -> ?creationTime:??? -> ?description:??? -> ?engineType:??? -> ?engineVersion:??? -> ?environmentArn:??? -> ?environmentId:??? -> ?highAvailabilityConfig:??? -> ?instanceType:??? -> ?kmsKeyId:??? -> ?loadBalancerArn:??? -> ?name:??? -> ?networkType:??? -> ?pendingMaintenance:??? -> ?preferredMaintenanceWindow:??? -> ?publiclyAccessible:??? -> ?securityGroupIds:??? -> ?status:??? -> ?statusReason:??? -> ?storageConfigurations:??? -> ?subnetIds:??? -> ?tags:??? -> ?vpcId:??? -> 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 * [> `Boolean of Boolean.t | `Enum of string | `Integer of CapacityValue.t | `List of [> `String of String50.t | `Structure of (string * [> `Structure of (string * [> `String of String200.t ]) list ]) list ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of EntityDescription.t | `Structure of (string * [> `Integer of CapacityValue.t | `String of String_.t | `Structure of (string * [> `Timestamp of Timestamp.t ]) list ]) 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