Module Values.AwsElasticBeanstalkEnvironmentDetailsSource

Contains details about an Elastic Beanstalk environment.

Sourcetype nonrec t = {
  1. applicationName : NonEmptyString.t option;
    (*

    The name of the application that is associated with the environment.

    *)
  2. cname : NonEmptyString.t option;
    (*

    The URL to the CNAME for this environment.

    *)
  3. dateCreated : NonEmptyString.t option;
    (*

    The creation date for this environment.

    *)
  4. dateUpdated : NonEmptyString.t option;
    (*

    The date when this environment was last modified.

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

    A description of the environment.

    *)
  6. endpointUrl : NonEmptyString.t option;
    (*

    For load-balanced, autoscaling environments, the URL to the load balancer. For single-instance environments, the IP address of the instance.

    *)
  7. environmentArn : NonEmptyString.t option;
    (*

    The ARN of the environment.

    *)
  8. environmentId : NonEmptyString.t option;
    (*

    The identifier of the environment.

    *)
  9. environmentName : NonEmptyString.t option;
    (*

    The name of the environment.

    *)
  10. optionSettings : AwsElasticBeanstalkEnvironmentOptionSettings.t option;
    (*

    The configuration setting for the environment.

    *)
  11. platformArn : NonEmptyString.t option;
    (*

    The ARN of the platform version for the environment.

    *)
  12. solutionStackName : NonEmptyString.t option;
    (*

    The name of the solution stack that is deployed with the environment.

    *)
  13. status : NonEmptyString.t option;
    (*

    The current operational status of the environment. Valid values are as follows: Aborting Launching LinkingFrom LinkingTo Ready Terminated Terminating Updating

    *)
  14. tier : AwsElasticBeanstalkEnvironmentTier.t option;
    (*

    The tier of the environment.

    *)
  15. versionLabel : NonEmptyString.t option;
    (*

    The application version of the environment.

    *)
}
Sourceval make : ?applicationName:??? -> ?cname:??? -> ?dateCreated:??? -> ?dateUpdated:??? -> ?description:??? -> ?endpointUrl:??? -> ?environmentArn:??? -> ?environmentId:??? -> ?environmentLinks:??? -> ?environmentName:??? -> ?optionSettings:??? -> ?platformArn:??? -> ?solutionStackName:??? -> ?status:??? -> ?tier:??? -> ?versionLabel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ]) 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