Struct aws_sdk_emrserverless::types::JobRunSummary
source · #[non_exhaustive]pub struct JobRunSummary {
pub application_id: String,
pub id: String,
pub name: Option<String>,
pub arn: String,
pub created_by: String,
pub created_at: DateTime,
pub updated_at: DateTime,
pub execution_role: String,
pub state: JobRunState,
pub state_details: String,
pub release_label: String,
pub type: Option<String>,
}
Expand description
The summary of attributes associated with a job run.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_id: String
The ID of the application the job is running on.
id: String
The ID of the job run.
name: Option<String>
The optional job run name. This doesn't have to be unique.
arn: String
The ARN of the job run.
created_by: String
The user who created the job run.
created_at: DateTime
The date and time when the job run was created.
updated_at: DateTime
The date and time when the job run was last updated.
execution_role: String
The execution role ARN of the job run.
state: JobRunState
The state of the job run.
state_details: String
The state details of the job run.
release_label: String
The Amazon EMR release associated with the application your job is running on.
type: Option<String>
The type of job run, such as Spark or Hive.
Implementations§
source§impl JobRunSummary
impl JobRunSummary
sourcepub fn application_id(&self) -> &str
pub fn application_id(&self) -> &str
The ID of the application the job is running on.
sourcepub fn created_by(&self) -> &str
pub fn created_by(&self) -> &str
The user who created the job run.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The date and time when the job run was created.
sourcepub fn updated_at(&self) -> &DateTime
pub fn updated_at(&self) -> &DateTime
The date and time when the job run was last updated.
sourcepub fn execution_role(&self) -> &str
pub fn execution_role(&self) -> &str
The execution role ARN of the job run.
sourcepub fn state(&self) -> &JobRunState
pub fn state(&self) -> &JobRunState
The state of the job run.
sourcepub fn state_details(&self) -> &str
pub fn state_details(&self) -> &str
The state details of the job run.
sourcepub fn release_label(&self) -> &str
pub fn release_label(&self) -> &str
The Amazon EMR release associated with the application your job is running on.
source§impl JobRunSummary
impl JobRunSummary
sourcepub fn builder() -> JobRunSummaryBuilder
pub fn builder() -> JobRunSummaryBuilder
Creates a new builder-style object to manufacture JobRunSummary
.
Trait Implementations§
source§impl Clone for JobRunSummary
impl Clone for JobRunSummary
source§fn clone(&self) -> JobRunSummary
fn clone(&self) -> JobRunSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for JobRunSummary
impl Debug for JobRunSummary
source§impl PartialEq for JobRunSummary
impl PartialEq for JobRunSummary
source§fn eq(&self, other: &JobRunSummary) -> bool
fn eq(&self, other: &JobRunSummary) -> bool
self
and other
values to be equal, and is used
by ==
.