Struct aws_sdk_robomaker::operation::start_simulation_job_batch::StartSimulationJobBatchInput
source · #[non_exhaustive]pub struct StartSimulationJobBatchInput {
pub client_request_token: Option<String>,
pub batch_policy: Option<BatchPolicy>,
pub create_simulation_job_requests: Option<Vec<SimulationJobRequest>>,
pub tags: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.client_request_token: Option<String>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
batch_policy: Option<BatchPolicy>The batch policy.
create_simulation_job_requests: Option<Vec<SimulationJobRequest>>A list of simulation job requests to create in the batch.
A map that contains tag keys and tag values that are attached to the deployment job batch.
Implementations§
source§impl StartSimulationJobBatchInput
impl StartSimulationJobBatchInput
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
sourcepub fn batch_policy(&self) -> Option<&BatchPolicy>
pub fn batch_policy(&self) -> Option<&BatchPolicy>
The batch policy.
sourcepub fn create_simulation_job_requests(&self) -> &[SimulationJobRequest]
pub fn create_simulation_job_requests(&self) -> &[SimulationJobRequest]
A list of simulation job requests to create in the batch.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .create_simulation_job_requests.is_none().
A map that contains tag keys and tag values that are attached to the deployment job batch.
source§impl StartSimulationJobBatchInput
impl StartSimulationJobBatchInput
sourcepub fn builder() -> StartSimulationJobBatchInputBuilder
pub fn builder() -> StartSimulationJobBatchInputBuilder
Creates a new builder-style object to manufacture StartSimulationJobBatchInput.
Trait Implementations§
source§impl Clone for StartSimulationJobBatchInput
impl Clone for StartSimulationJobBatchInput
source§fn clone(&self) -> StartSimulationJobBatchInput
fn clone(&self) -> StartSimulationJobBatchInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for StartSimulationJobBatchInput
impl Debug for StartSimulationJobBatchInput
source§impl PartialEq for StartSimulationJobBatchInput
impl PartialEq for StartSimulationJobBatchInput
source§fn eq(&self, other: &StartSimulationJobBatchInput) -> bool
fn eq(&self, other: &StartSimulationJobBatchInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StartSimulationJobBatchInput
Auto Trait Implementations§
impl RefUnwindSafe for StartSimulationJobBatchInput
impl Send for StartSimulationJobBatchInput
impl Sync for StartSimulationJobBatchInput
impl Unpin for StartSimulationJobBatchInput
impl UnwindSafe for StartSimulationJobBatchInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.