#[non_exhaustive]pub struct SimulationJobSummaryBuilder { /* private fields */ }Expand description
A builder for SimulationJobSummary.
Implementations§
source§impl SimulationJobSummaryBuilder
impl SimulationJobSummaryBuilder
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the simulation job.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the simulation job.
sourcepub fn last_updated_at(self, input: DateTime) -> Self
pub fn last_updated_at(self, input: DateTime) -> Self
The time, in milliseconds since the epoch, when the simulation job was last updated.
sourcepub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
The time, in milliseconds since the epoch, when the simulation job was last updated.
sourcepub fn get_last_updated_at(&self) -> &Option<DateTime>
pub fn get_last_updated_at(&self) -> &Option<DateTime>
The time, in milliseconds since the epoch, when the simulation job was last updated.
sourcepub fn status(self, input: SimulationJobStatus) -> Self
pub fn status(self, input: SimulationJobStatus) -> Self
The status of the simulation job.
sourcepub fn set_status(self, input: Option<SimulationJobStatus>) -> Self
pub fn set_status(self, input: Option<SimulationJobStatus>) -> Self
The status of the simulation job.
sourcepub fn get_status(&self) -> &Option<SimulationJobStatus>
pub fn get_status(&self) -> &Option<SimulationJobStatus>
The status of the simulation job.
sourcepub fn simulation_application_names(self, input: impl Into<String>) -> Self
pub fn simulation_application_names(self, input: impl Into<String>) -> Self
Appends an item to simulation_application_names.
To override the contents of this collection use set_simulation_application_names.
A list of simulation job simulation application names.
sourcepub fn set_simulation_application_names(
self,
input: Option<Vec<String>>
) -> Self
pub fn set_simulation_application_names( self, input: Option<Vec<String>> ) -> Self
A list of simulation job simulation application names.
sourcepub fn get_simulation_application_names(&self) -> &Option<Vec<String>>
pub fn get_simulation_application_names(&self) -> &Option<Vec<String>>
A list of simulation job simulation application names.
sourcepub fn robot_application_names(self, input: impl Into<String>) -> Self
pub fn robot_application_names(self, input: impl Into<String>) -> Self
Appends an item to robot_application_names.
To override the contents of this collection use set_robot_application_names.
A list of simulation job robot application names.
sourcepub fn set_robot_application_names(self, input: Option<Vec<String>>) -> Self
pub fn set_robot_application_names(self, input: Option<Vec<String>>) -> Self
A list of simulation job robot application names.
sourcepub fn get_robot_application_names(&self) -> &Option<Vec<String>>
pub fn get_robot_application_names(&self) -> &Option<Vec<String>>
A list of simulation job robot application names.
sourcepub fn data_source_names(self, input: impl Into<String>) -> Self
pub fn data_source_names(self, input: impl Into<String>) -> Self
Appends an item to data_source_names.
To override the contents of this collection use set_data_source_names.
The names of the data sources.
sourcepub fn set_data_source_names(self, input: Option<Vec<String>>) -> Self
pub fn set_data_source_names(self, input: Option<Vec<String>>) -> Self
The names of the data sources.
sourcepub fn get_data_source_names(&self) -> &Option<Vec<String>>
pub fn get_data_source_names(&self) -> &Option<Vec<String>>
The names of the data sources.
sourcepub fn compute_type(self, input: ComputeType) -> Self
pub fn compute_type(self, input: ComputeType) -> Self
The compute type for the simulation job summary.
sourcepub fn set_compute_type(self, input: Option<ComputeType>) -> Self
pub fn set_compute_type(self, input: Option<ComputeType>) -> Self
The compute type for the simulation job summary.
sourcepub fn get_compute_type(&self) -> &Option<ComputeType>
pub fn get_compute_type(&self) -> &Option<ComputeType>
The compute type for the simulation job summary.
sourcepub fn build(self) -> SimulationJobSummary
pub fn build(self) -> SimulationJobSummary
Consumes the builder and constructs a SimulationJobSummary.
Trait Implementations§
source§impl Clone for SimulationJobSummaryBuilder
impl Clone for SimulationJobSummaryBuilder
source§fn clone(&self) -> SimulationJobSummaryBuilder
fn clone(&self) -> SimulationJobSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SimulationJobSummaryBuilder
impl Debug for SimulationJobSummaryBuilder
source§impl Default for SimulationJobSummaryBuilder
impl Default for SimulationJobSummaryBuilder
source§fn default() -> SimulationJobSummaryBuilder
fn default() -> SimulationJobSummaryBuilder
source§impl PartialEq for SimulationJobSummaryBuilder
impl PartialEq for SimulationJobSummaryBuilder
source§fn eq(&self, other: &SimulationJobSummaryBuilder) -> bool
fn eq(&self, other: &SimulationJobSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.