Struct aws_sdk_omics::operation::get_run_group::GetRunGroupOutput
source · #[non_exhaustive]pub struct GetRunGroupOutput {
pub arn: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub max_cpus: Option<i32>,
pub max_runs: Option<i32>,
pub max_duration: Option<i32>,
pub creation_time: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
pub max_gpus: Option<i32>,
/* private fields */
}
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.arn: Option<String>
The group's ARN.
id: Option<String>
The group's ID.
name: Option<String>
The group's name.
max_cpus: Option<i32>
The group's maximum number of CPUs to use.
max_runs: Option<i32>
The maximum number of concurrent runs for the group.
max_duration: Option<i32>
The group's maximum run time in minutes.
creation_time: Option<DateTime>
When the group was created.
The group's tags.
max_gpus: Option<i32>
The maximum GPUs that can be used by a run group.
Implementations§
source§impl GetRunGroupOutput
impl GetRunGroupOutput
sourcepub fn max_duration(&self) -> Option<i32>
pub fn max_duration(&self) -> Option<i32>
The group's maximum run time in minutes.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the group was created.
The group's tags.
source§impl GetRunGroupOutput
impl GetRunGroupOutput
sourcepub fn builder() -> GetRunGroupOutputBuilder
pub fn builder() -> GetRunGroupOutputBuilder
Creates a new builder-style object to manufacture GetRunGroupOutput
.
Trait Implementations§
source§impl Clone for GetRunGroupOutput
impl Clone for GetRunGroupOutput
source§fn clone(&self) -> GetRunGroupOutput
fn clone(&self) -> GetRunGroupOutput
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 GetRunGroupOutput
impl Debug for GetRunGroupOutput
source§impl PartialEq for GetRunGroupOutput
impl PartialEq for GetRunGroupOutput
source§fn eq(&self, other: &GetRunGroupOutput) -> bool
fn eq(&self, other: &GetRunGroupOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetRunGroupOutput
impl RequestId for GetRunGroupOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetRunGroupOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetRunGroupOutput
impl Send for GetRunGroupOutput
impl Sync for GetRunGroupOutput
impl Unpin for GetRunGroupOutput
impl UnwindSafe for GetRunGroupOutput
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.