Module Values.ApplicationSource

Information about an application. Amazon EMR Serverless uses applications to run jobs.

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

    The ID of the application.

    *)
  2. name : ApplicationName.t option;
    (*

    The name of the application.

    *)
  3. arn : ApplicationArn.t option;
    (*

    The ARN of the application.

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

    The Amazon EMR release associated with the application.

    *)
  5. type_ : EngineType.t option;
    (*

    The type of application, such as Spark or Hive.

    *)
  6. state : ApplicationState.t option;
    (*

    The state of the application.

    *)
  7. stateDetails : String256.t option;
    (*

    The state details of the application.

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

    The initial capacity of the application.

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

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

    *)
  10. createdAt : Date.t option;
    (*

    The date and time when the application run was created.

    *)
  11. updatedAt : Date.t option;
    (*

    The date and time when the application run was last updated.

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

    The tags assigned to the application.

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

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

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

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

    *)
  15. networkConfiguration : NetworkConfiguration.t option;
    (*

    The network configuration for customer VPC connectivity for the application.

    *)
  16. architecture : Architecture.t option;
    (*

    The CPU architecture of an application.

    *)
  17. imageConfiguration : ImageConfiguration.t option;
    (*

    The image configuration applied to all worker types.

    *)
  18. workerTypeSpecifications : WorkerTypeSpecificationMap.t option;
    (*

    The specification applied to each worker type.

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

    The Configuration specifications of an application. Each configuration consists of a classification and properties. You use this parameter when creating or updating an application. To see the runtimeConfiguration object of an application, run the GetApplication API operation.

    *)
  20. monitoringConfiguration : MonitoringConfiguration.t option;
  21. diskEncryptionConfiguration : DiskEncryptionConfiguration.t option;
    (*

    The configuration object that allows encrypting local disks.

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

    The interactive configuration object that enables the interactive use cases for an application.

    *)
  23. 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.

    *)
  24. identityCenterConfiguration : IdentityCenterConfiguration.t option;
    (*

    The IAM Identity Center configuration applied to enable trusted identity propagation.

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

    The configuration object that enables job level cost allocation.

    *)
}
Sourceval make : ?applicationId:??? -> ?name:??? -> ?arn:??? -> ?releaseLabel:??? -> ?type_:??? -> ?state:??? -> ?stateDetails:??? -> ?initialCapacity:??? -> ?maximumCapacity:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?tags:??? -> ?autoStartConfiguration:??? -> ?autoStopConfiguration:??? -> ?networkConfiguration:??? -> ?architecture:??? -> ?imageConfiguration:??? -> ?workerTypeSpecifications:??? -> ?runtimeConfiguration:??? -> ?monitoringConfiguration:??? -> ?diskEncryptionConfiguration:??? -> ?interactiveConfiguration:??? -> ?schedulerConfiguration:??? -> ?identityCenterConfiguration:??? -> ?jobLevelCostAllocationConfiguration:??? -> 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