/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace EMRServerless { namespace Model { /** *

Information about a job run. A job run is a unit of work, such as a Spark * JAR, Hive query, or SparkSQL query, that you submit to an Amazon EMR Serverless * application.

See Also:

AWS * API Reference

*/ class JobRun { public: AWS_EMRSERVERLESS_API JobRun(); AWS_EMRSERVERLESS_API JobRun(Aws::Utils::Json::JsonView jsonValue); AWS_EMRSERVERLESS_API JobRun& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_EMRSERVERLESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ID of the application the job is running on.

*/ inline const Aws::String& GetApplicationId() const{ return m_applicationId; } /** *

The ID of the application the job is running on.

*/ inline bool ApplicationIdHasBeenSet() const { return m_applicationIdHasBeenSet; } /** *

The ID of the application the job is running on.

*/ inline void SetApplicationId(const Aws::String& value) { m_applicationIdHasBeenSet = true; m_applicationId = value; } /** *

The ID of the application the job is running on.

*/ inline void SetApplicationId(Aws::String&& value) { m_applicationIdHasBeenSet = true; m_applicationId = std::move(value); } /** *

The ID of the application the job is running on.

*/ inline void SetApplicationId(const char* value) { m_applicationIdHasBeenSet = true; m_applicationId.assign(value); } /** *

The ID of the application the job is running on.

*/ inline JobRun& WithApplicationId(const Aws::String& value) { SetApplicationId(value); return *this;} /** *

The ID of the application the job is running on.

*/ inline JobRun& WithApplicationId(Aws::String&& value) { SetApplicationId(std::move(value)); return *this;} /** *

The ID of the application the job is running on.

*/ inline JobRun& WithApplicationId(const char* value) { SetApplicationId(value); return *this;} /** *

The ID of the job run.

*/ inline const Aws::String& GetJobRunId() const{ return m_jobRunId; } /** *

The ID of the job run.

*/ inline bool JobRunIdHasBeenSet() const { return m_jobRunIdHasBeenSet; } /** *

The ID of the job run.

*/ inline void SetJobRunId(const Aws::String& value) { m_jobRunIdHasBeenSet = true; m_jobRunId = value; } /** *

The ID of the job run.

*/ inline void SetJobRunId(Aws::String&& value) { m_jobRunIdHasBeenSet = true; m_jobRunId = std::move(value); } /** *

The ID of the job run.

*/ inline void SetJobRunId(const char* value) { m_jobRunIdHasBeenSet = true; m_jobRunId.assign(value); } /** *

The ID of the job run.

*/ inline JobRun& WithJobRunId(const Aws::String& value) { SetJobRunId(value); return *this;} /** *

The ID of the job run.

*/ inline JobRun& WithJobRunId(Aws::String&& value) { SetJobRunId(std::move(value)); return *this;} /** *

The ID of the job run.

*/ inline JobRun& WithJobRunId(const char* value) { SetJobRunId(value); return *this;} /** *

The optional job run name. This doesn't have to be unique.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The optional job run name. This doesn't have to be unique.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The optional job run name. This doesn't have to be unique.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The optional job run name. This doesn't have to be unique.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The optional job run name. This doesn't have to be unique.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The optional job run name. This doesn't have to be unique.

*/ inline JobRun& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The optional job run name. This doesn't have to be unique.

*/ inline JobRun& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The optional job run name. This doesn't have to be unique.

*/ inline JobRun& WithName(const char* value) { SetName(value); return *this;} /** *

The execution role ARN of the job run.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The execution role ARN of the job run.

*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *

The execution role ARN of the job run.

*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *

The execution role ARN of the job run.

*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *

The execution role ARN of the job run.

*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *

The execution role ARN of the job run.

*/ inline JobRun& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The execution role ARN of the job run.

*/ inline JobRun& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The execution role ARN of the job run.

*/ inline JobRun& WithArn(const char* value) { SetArn(value); return *this;} /** *

The user who created the job run.

*/ inline const Aws::String& GetCreatedBy() const{ return m_createdBy; } /** *

The user who created the job run.

*/ inline bool CreatedByHasBeenSet() const { return m_createdByHasBeenSet; } /** *

The user who created the job run.

*/ inline void SetCreatedBy(const Aws::String& value) { m_createdByHasBeenSet = true; m_createdBy = value; } /** *

The user who created the job run.

*/ inline void SetCreatedBy(Aws::String&& value) { m_createdByHasBeenSet = true; m_createdBy = std::move(value); } /** *

The user who created the job run.

*/ inline void SetCreatedBy(const char* value) { m_createdByHasBeenSet = true; m_createdBy.assign(value); } /** *

The user who created the job run.

*/ inline JobRun& WithCreatedBy(const Aws::String& value) { SetCreatedBy(value); return *this;} /** *

The user who created the job run.

*/ inline JobRun& WithCreatedBy(Aws::String&& value) { SetCreatedBy(std::move(value)); return *this;} /** *

The user who created the job run.

*/ inline JobRun& WithCreatedBy(const char* value) { SetCreatedBy(value); return *this;} /** *

The date and time when the job run was created.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

The date and time when the job run was created.

*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *

The date and time when the job run was created.

*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *

The date and time when the job run was created.

*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *

The date and time when the job run was created.

*/ inline JobRun& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

The date and time when the job run was created.

*/ inline JobRun& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

The date and time when the job run was updated.

*/ inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; } /** *

The date and time when the job run was updated.

*/ inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; } /** *

The date and time when the job run was updated.

*/ inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAtHasBeenSet = true; m_updatedAt = value; } /** *

The date and time when the job run was updated.

*/ inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::move(value); } /** *

The date and time when the job run was updated.

*/ inline JobRun& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;} /** *

The date and time when the job run was updated.

*/ inline JobRun& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;} /** *

The execution role ARN of the job run.

*/ inline const Aws::String& GetExecutionRole() const{ return m_executionRole; } /** *

The execution role ARN of the job run.

*/ inline bool ExecutionRoleHasBeenSet() const { return m_executionRoleHasBeenSet; } /** *

The execution role ARN of the job run.

*/ inline void SetExecutionRole(const Aws::String& value) { m_executionRoleHasBeenSet = true; m_executionRole = value; } /** *

The execution role ARN of the job run.

*/ inline void SetExecutionRole(Aws::String&& value) { m_executionRoleHasBeenSet = true; m_executionRole = std::move(value); } /** *

The execution role ARN of the job run.

*/ inline void SetExecutionRole(const char* value) { m_executionRoleHasBeenSet = true; m_executionRole.assign(value); } /** *

The execution role ARN of the job run.

*/ inline JobRun& WithExecutionRole(const Aws::String& value) { SetExecutionRole(value); return *this;} /** *

The execution role ARN of the job run.

*/ inline JobRun& WithExecutionRole(Aws::String&& value) { SetExecutionRole(std::move(value)); return *this;} /** *

The execution role ARN of the job run.

*/ inline JobRun& WithExecutionRole(const char* value) { SetExecutionRole(value); return *this;} /** *

The state of the job run.

*/ inline const JobRunState& GetState() const{ return m_state; } /** *

The state of the job run.

*/ inline bool StateHasBeenSet() const { return m_stateHasBeenSet; } /** *

The state of the job run.

*/ inline void SetState(const JobRunState& value) { m_stateHasBeenSet = true; m_state = value; } /** *

The state of the job run.

*/ inline void SetState(JobRunState&& value) { m_stateHasBeenSet = true; m_state = std::move(value); } /** *

The state of the job run.

*/ inline JobRun& WithState(const JobRunState& value) { SetState(value); return *this;} /** *

The state of the job run.

*/ inline JobRun& WithState(JobRunState&& value) { SetState(std::move(value)); return *this;} /** *

The state details of the job run.

*/ inline const Aws::String& GetStateDetails() const{ return m_stateDetails; } /** *

The state details of the job run.

*/ inline bool StateDetailsHasBeenSet() const { return m_stateDetailsHasBeenSet; } /** *

The state details of the job run.

*/ inline void SetStateDetails(const Aws::String& value) { m_stateDetailsHasBeenSet = true; m_stateDetails = value; } /** *

The state details of the job run.

*/ inline void SetStateDetails(Aws::String&& value) { m_stateDetailsHasBeenSet = true; m_stateDetails = std::move(value); } /** *

The state details of the job run.

*/ inline void SetStateDetails(const char* value) { m_stateDetailsHasBeenSet = true; m_stateDetails.assign(value); } /** *

The state details of the job run.

*/ inline JobRun& WithStateDetails(const Aws::String& value) { SetStateDetails(value); return *this;} /** *

The state details of the job run.

*/ inline JobRun& WithStateDetails(Aws::String&& value) { SetStateDetails(std::move(value)); return *this;} /** *

The state details of the job run.

*/ inline JobRun& WithStateDetails(const char* value) { SetStateDetails(value); return *this;} /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline const Aws::String& GetReleaseLabel() const{ return m_releaseLabel; } /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline bool ReleaseLabelHasBeenSet() const { return m_releaseLabelHasBeenSet; } /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline void SetReleaseLabel(const Aws::String& value) { m_releaseLabelHasBeenSet = true; m_releaseLabel = value; } /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline void SetReleaseLabel(Aws::String&& value) { m_releaseLabelHasBeenSet = true; m_releaseLabel = std::move(value); } /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline void SetReleaseLabel(const char* value) { m_releaseLabelHasBeenSet = true; m_releaseLabel.assign(value); } /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline JobRun& WithReleaseLabel(const Aws::String& value) { SetReleaseLabel(value); return *this;} /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline JobRun& WithReleaseLabel(Aws::String&& value) { SetReleaseLabel(std::move(value)); return *this;} /** *

The Amazon EMR release associated with the application your job is running * on.

*/ inline JobRun& WithReleaseLabel(const char* value) { SetReleaseLabel(value); return *this;} /** *

The configuration settings that are used to override default * configuration.

*/ inline const ConfigurationOverrides& GetConfigurationOverrides() const{ return m_configurationOverrides; } /** *

The configuration settings that are used to override default * configuration.

*/ inline bool ConfigurationOverridesHasBeenSet() const { return m_configurationOverridesHasBeenSet; } /** *

The configuration settings that are used to override default * configuration.

*/ inline void SetConfigurationOverrides(const ConfigurationOverrides& value) { m_configurationOverridesHasBeenSet = true; m_configurationOverrides = value; } /** *

The configuration settings that are used to override default * configuration.

*/ inline void SetConfigurationOverrides(ConfigurationOverrides&& value) { m_configurationOverridesHasBeenSet = true; m_configurationOverrides = std::move(value); } /** *

The configuration settings that are used to override default * configuration.

*/ inline JobRun& WithConfigurationOverrides(const ConfigurationOverrides& value) { SetConfigurationOverrides(value); return *this;} /** *

The configuration settings that are used to override default * configuration.

*/ inline JobRun& WithConfigurationOverrides(ConfigurationOverrides&& value) { SetConfigurationOverrides(std::move(value)); return *this;} /** *

The job driver for the job run.

*/ inline const JobDriver& GetJobDriver() const{ return m_jobDriver; } /** *

The job driver for the job run.

*/ inline bool JobDriverHasBeenSet() const { return m_jobDriverHasBeenSet; } /** *

The job driver for the job run.

*/ inline void SetJobDriver(const JobDriver& value) { m_jobDriverHasBeenSet = true; m_jobDriver = value; } /** *

The job driver for the job run.

*/ inline void SetJobDriver(JobDriver&& value) { m_jobDriverHasBeenSet = true; m_jobDriver = std::move(value); } /** *

The job driver for the job run.

*/ inline JobRun& WithJobDriver(const JobDriver& value) { SetJobDriver(value); return *this;} /** *

The job driver for the job run.

*/ inline JobRun& WithJobDriver(JobDriver&& value) { SetJobDriver(std::move(value)); return *this;} /** *

The tags assigned to the job run.

*/ inline const Aws::Map& GetTags() const{ return m_tags; } /** *

The tags assigned to the job run.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

The tags assigned to the job run.

*/ inline void SetTags(const Aws::Map& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The tags assigned to the job run.

*/ inline void SetTags(Aws::Map&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The tags assigned to the job run.

*/ inline JobRun& WithTags(const Aws::Map& value) { SetTags(value); return *this;} /** *

The tags assigned to the job run.

*/ inline JobRun& WithTags(Aws::Map&& value) { SetTags(std::move(value)); return *this;} /** *

The tags assigned to the job run.

*/ inline JobRun& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

The tags assigned to the job run.

*/ inline JobRun& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

The tags assigned to the job run.

*/ inline JobRun& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

The tags assigned to the job run.

*/ inline JobRun& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *

The tags assigned to the job run.

*/ inline JobRun& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *

The tags assigned to the job run.

*/ inline JobRun& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *

The tags assigned to the job run.

*/ inline JobRun& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *

The aggregate vCPU, memory, and storage resources used from the time the job * starts to execute, until the time the job terminates, rounded up to the nearest * second.

*/ inline const TotalResourceUtilization& GetTotalResourceUtilization() const{ return m_totalResourceUtilization; } /** *

The aggregate vCPU, memory, and storage resources used from the time the job * starts to execute, until the time the job terminates, rounded up to the nearest * second.

*/ inline bool TotalResourceUtilizationHasBeenSet() const { return m_totalResourceUtilizationHasBeenSet; } /** *

The aggregate vCPU, memory, and storage resources used from the time the job * starts to execute, until the time the job terminates, rounded up to the nearest * second.

*/ inline void SetTotalResourceUtilization(const TotalResourceUtilization& value) { m_totalResourceUtilizationHasBeenSet = true; m_totalResourceUtilization = value; } /** *

The aggregate vCPU, memory, and storage resources used from the time the job * starts to execute, until the time the job terminates, rounded up to the nearest * second.

*/ inline void SetTotalResourceUtilization(TotalResourceUtilization&& value) { m_totalResourceUtilizationHasBeenSet = true; m_totalResourceUtilization = std::move(value); } /** *

The aggregate vCPU, memory, and storage resources used from the time the job * starts to execute, until the time the job terminates, rounded up to the nearest * second.

*/ inline JobRun& WithTotalResourceUtilization(const TotalResourceUtilization& value) { SetTotalResourceUtilization(value); return *this;} /** *

The aggregate vCPU, memory, and storage resources used from the time the job * starts to execute, until the time the job terminates, rounded up to the nearest * second.

*/ inline JobRun& WithTotalResourceUtilization(TotalResourceUtilization&& value) { SetTotalResourceUtilization(std::move(value)); return *this;} inline const NetworkConfiguration& GetNetworkConfiguration() const{ return m_networkConfiguration; } inline bool NetworkConfigurationHasBeenSet() const { return m_networkConfigurationHasBeenSet; } inline void SetNetworkConfiguration(const NetworkConfiguration& value) { m_networkConfigurationHasBeenSet = true; m_networkConfiguration = value; } inline void SetNetworkConfiguration(NetworkConfiguration&& value) { m_networkConfigurationHasBeenSet = true; m_networkConfiguration = std::move(value); } inline JobRun& WithNetworkConfiguration(const NetworkConfiguration& value) { SetNetworkConfiguration(value); return *this;} inline JobRun& WithNetworkConfiguration(NetworkConfiguration&& value) { SetNetworkConfiguration(std::move(value)); return *this;} /** *

The job run total execution duration in seconds. This field is only available * for job runs in a COMPLETED, FAILED, or * CANCELLED state.

*/ inline int GetTotalExecutionDurationSeconds() const{ return m_totalExecutionDurationSeconds; } /** *

The job run total execution duration in seconds. This field is only available * for job runs in a COMPLETED, FAILED, or * CANCELLED state.

*/ inline bool TotalExecutionDurationSecondsHasBeenSet() const { return m_totalExecutionDurationSecondsHasBeenSet; } /** *

The job run total execution duration in seconds. This field is only available * for job runs in a COMPLETED, FAILED, or * CANCELLED state.

*/ inline void SetTotalExecutionDurationSeconds(int value) { m_totalExecutionDurationSecondsHasBeenSet = true; m_totalExecutionDurationSeconds = value; } /** *

The job run total execution duration in seconds. This field is only available * for job runs in a COMPLETED, FAILED, or * CANCELLED state.

*/ inline JobRun& WithTotalExecutionDurationSeconds(int value) { SetTotalExecutionDurationSeconds(value); return *this;} /** *

Returns the job run timeout value from the StartJobRun call. If * no timeout was specified, then it returns the default timeout of 720 * minutes.

*/ inline long long GetExecutionTimeoutMinutes() const{ return m_executionTimeoutMinutes; } /** *

Returns the job run timeout value from the StartJobRun call. If * no timeout was specified, then it returns the default timeout of 720 * minutes.

*/ inline bool ExecutionTimeoutMinutesHasBeenSet() const { return m_executionTimeoutMinutesHasBeenSet; } /** *

Returns the job run timeout value from the StartJobRun call. If * no timeout was specified, then it returns the default timeout of 720 * minutes.

*/ inline void SetExecutionTimeoutMinutes(long long value) { m_executionTimeoutMinutesHasBeenSet = true; m_executionTimeoutMinutes = value; } /** *

Returns the job run timeout value from the StartJobRun call. If * no timeout was specified, then it returns the default timeout of 720 * minutes.

*/ inline JobRun& WithExecutionTimeoutMinutes(long long value) { SetExecutionTimeoutMinutes(value); return *this;} /** *

The aggregate vCPU, memory, and storage that Amazon Web Services has billed * for the job run. The billed resources include a 1-minute minimum usage for * workers, plus additional storage over 20 GB per worker. Note that billed * resources do not include usage for idle pre-initialized workers.

*/ inline const ResourceUtilization& GetBilledResourceUtilization() const{ return m_billedResourceUtilization; } /** *

The aggregate vCPU, memory, and storage that Amazon Web Services has billed * for the job run. The billed resources include a 1-minute minimum usage for * workers, plus additional storage over 20 GB per worker. Note that billed * resources do not include usage for idle pre-initialized workers.

*/ inline bool BilledResourceUtilizationHasBeenSet() const { return m_billedResourceUtilizationHasBeenSet; } /** *

The aggregate vCPU, memory, and storage that Amazon Web Services has billed * for the job run. The billed resources include a 1-minute minimum usage for * workers, plus additional storage over 20 GB per worker. Note that billed * resources do not include usage for idle pre-initialized workers.

*/ inline void SetBilledResourceUtilization(const ResourceUtilization& value) { m_billedResourceUtilizationHasBeenSet = true; m_billedResourceUtilization = value; } /** *

The aggregate vCPU, memory, and storage that Amazon Web Services has billed * for the job run. The billed resources include a 1-minute minimum usage for * workers, plus additional storage over 20 GB per worker. Note that billed * resources do not include usage for idle pre-initialized workers.

*/ inline void SetBilledResourceUtilization(ResourceUtilization&& value) { m_billedResourceUtilizationHasBeenSet = true; m_billedResourceUtilization = std::move(value); } /** *

The aggregate vCPU, memory, and storage that Amazon Web Services has billed * for the job run. The billed resources include a 1-minute minimum usage for * workers, plus additional storage over 20 GB per worker. Note that billed * resources do not include usage for idle pre-initialized workers.

*/ inline JobRun& WithBilledResourceUtilization(const ResourceUtilization& value) { SetBilledResourceUtilization(value); return *this;} /** *

The aggregate vCPU, memory, and storage that Amazon Web Services has billed * for the job run. The billed resources include a 1-minute minimum usage for * workers, plus additional storage over 20 GB per worker. Note that billed * resources do not include usage for idle pre-initialized workers.

*/ inline JobRun& WithBilledResourceUtilization(ResourceUtilization&& value) { SetBilledResourceUtilization(std::move(value)); return *this;} private: Aws::String m_applicationId; bool m_applicationIdHasBeenSet = false; Aws::String m_jobRunId; bool m_jobRunIdHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; Aws::String m_createdBy; bool m_createdByHasBeenSet = false; Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::Utils::DateTime m_updatedAt; bool m_updatedAtHasBeenSet = false; Aws::String m_executionRole; bool m_executionRoleHasBeenSet = false; JobRunState m_state; bool m_stateHasBeenSet = false; Aws::String m_stateDetails; bool m_stateDetailsHasBeenSet = false; Aws::String m_releaseLabel; bool m_releaseLabelHasBeenSet = false; ConfigurationOverrides m_configurationOverrides; bool m_configurationOverridesHasBeenSet = false; JobDriver m_jobDriver; bool m_jobDriverHasBeenSet = false; Aws::Map m_tags; bool m_tagsHasBeenSet = false; TotalResourceUtilization m_totalResourceUtilization; bool m_totalResourceUtilizationHasBeenSet = false; NetworkConfiguration m_networkConfiguration; bool m_networkConfigurationHasBeenSet = false; int m_totalExecutionDurationSeconds; bool m_totalExecutionDurationSecondsHasBeenSet = false; long long m_executionTimeoutMinutes; bool m_executionTimeoutMinutesHasBeenSet = false; ResourceUtilization m_billedResourceUtilization; bool m_billedResourceUtilizationHasBeenSet = false; }; } // namespace Model } // namespace EMRServerless } // namespace Aws