Module Values.UpdateEnvironmentMessageSource

Request to update an environment.

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

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

    *)
  2. environmentId : EnvironmentId.t option;
    (*

    The ID of the environment to update. If no environment with this ID exists, AWS Elastic Beanstalk returns an InvalidParameterValue error. Condition: You must specify either this or an EnvironmentName, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

    *)
  3. environmentName : EnvironmentName.t option;
    (*

    The name of the environment to update. If no environment with this name exists, AWS Elastic Beanstalk returns an InvalidParameterValue error. Condition: You must specify either this or an EnvironmentId, or both. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter error.

    *)
  4. groupName : GroupName.t option;
    (*

    The name of the group to which the target environment belongs. Specify a group name only if the environment's name is specified in an environment manifest and not with the environment name or environment ID parameters. See Environment Manifest (env.yaml) for details.

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

    If this parameter is specified, AWS Elastic Beanstalk updates the description of this environment.

    *)
  6. tier : EnvironmentTier.t option;
    (*

    This specifies the tier to use to update the environment. Condition: At this time, if you change the tier version, name, or type, AWS Elastic Beanstalk returns InvalidParameterValue error.

    *)
  7. versionLabel : VersionLabel.t option;
    (*

    If this parameter is specified, AWS Elastic Beanstalk deploys the named application version to the environment. If no such application version is found, returns an InvalidParameterValue error.

    *)
  8. templateName : ConfigurationTemplateName.t option;
    (*

    If this parameter is specified, AWS Elastic Beanstalk deploys this configuration template to the environment. If no such configuration template is found, AWS Elastic Beanstalk returns an InvalidParameterValue error.

    *)
  9. solutionStackName : SolutionStackName.t option;
    (*

    This specifies the platform version that the environment will run after the environment is updated.

    *)
  10. platformArn : PlatformArn.t option;
    (*

    The ARN of the platform, if used.

    *)
  11. optionSettings : ConfigurationOptionSettingsList.t option;
    (*

    If specified, AWS Elastic Beanstalk updates the configuration set associated with the running environment and sets the specified configuration options to the requested value.

    *)
  12. optionsToRemove : OptionsSpecifierList.t option;
    (*

    A list of custom user-defined configuration options to remove from the configuration set for this environment.

    *)
}
Sourceval make : ?applicationName:??? -> ?environmentId:??? -> ?environmentName:??? -> ?groupName:??? -> ?description:??? -> ?tier:??? -> ?versionLabel:??? -> ?templateName:??? -> ?solutionStackName:??? -> ?platformArn:??? -> ?optionSettings:??? -> ?optionsToRemove:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ResourceName.t ]) list ] list | `String of ApplicationName.t | `Structure of (string * [> `String of String_.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