Module Values.UpdateApplicationRequestSource

Updates a specified application. An application has to be in a stopped or created state in order to be updated.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The ID of the application to update.

    *)
  2. clientToken : ClientToken.t;
    (*

    The client idempotency token of the application to update. Its value must be unique for each request.

    *)
  3. initialCapacity : InitialCapacityConfigMap.t option;
    (*

    The capacity to initialize when the application is updated.

    *)
  4. maximumCapacity : MaximumAllowedResources.t option;
    (*

    The maximum capacity to allocate when the application is updated. This is cumulative across all workers at any given point in time during the lifespan of the application. No new resources will be created once any one of the defined limits is hit.

    *)
  5. autoStartConfiguration : AutoStartConfig.t option;
    (*

    The configuration for an application to automatically start on job submission.

    *)
  6. autoStopConfiguration : AutoStopConfig.t option;
    (*

    The configuration for an application to automatically stop after a certain amount of time being idle.

    *)
  7. networkConfiguration : NetworkConfiguration.t option;
  8. architecture : Architecture.t option;
    (*

    The CPU architecture of an application.

    *)
  9. imageConfiguration : ImageConfigurationInput.t option;
    (*

    The image configuration to be used for all worker types. You can either set this parameter or imageConfiguration for each worker type in WorkerTypeSpecificationInput.

    *)
  10. workerTypeSpecifications : WorkerTypeSpecificationInputMap.t option;
    (*

    The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.

    *)
  11. interactiveConfiguration : InteractiveConfiguration.t option;
    (*

    The interactive configuration object that contains new interactive use cases when the application is updated.

    *)
  12. releaseLabel : ReleaseLabel.t option;
    (*

    The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR.

    *)
  13. runtimeConfiguration : ConfigurationList.t option;
    (*

    The Configuration specifications to use when updating an application. Each configuration consists of a classification and properties. This configuration is applied across all the job runs submitted under the application.

    *)
  14. monitoringConfiguration : MonitoringConfiguration.t option;
    (*

    The configuration setting for monitoring.

    *)
  15. diskEncryptionConfiguration : DiskEncryptionConfiguration.t option;
    (*

    The configuration object that allows encrypting local disks.

    *)
  16. schedulerConfiguration : SchedulerConfiguration.t option;
    (*

    The scheduler configuration for batch and streaming jobs running on this application. Supported with release labels emr-7.0.0 and above.

    *)
  17. identityCenterConfiguration : IdentityCenterConfigurationInput.t option;
    (*

    Specifies the IAM Identity Center configuration used to enable or disable trusted identity propagation. When provided, this configuration determines how the application interacts with IAM Identity Center for user authentication and access control.

    *)
  18. jobLevelCostAllocationConfiguration : JobLevelCostAllocationConfiguration.t option;
    (*

    The configuration object that enables job level cost allocation.

    *)
}
Sourceval context_ : string
Sourceval make : ?initialCapacity:??? -> ?maximumCapacity:??? -> ?autoStartConfiguration:??? -> ?autoStopConfiguration:??? -> ?networkConfiguration:??? -> ?architecture:??? -> ?imageConfiguration:??? -> ?workerTypeSpecifications:??? -> ?interactiveConfiguration:??? -> ?releaseLabel:??? -> ?runtimeConfiguration:??? -> ?monitoringConfiguration:??? -> ?diskEncryptionConfiguration:??? -> ?schedulerConfiguration:??? -> ?identityCenterConfiguration:??? -> ?jobLevelCostAllocationConfiguration:??? -> applicationId:ApplicationId.t -> clientToken:ClientToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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