#[non_exhaustive]pub struct AddInstanceGroupsOutput {
pub job_flow_id: Option<String>,
pub instance_group_ids: Option<Vec<String>>,
pub cluster_arn: Option<String>,
/* private fields */
}
Expand description
Output from an AddInstanceGroups call.
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.job_flow_id: Option<String>
The job flow ID in which the instance groups are added.
instance_group_ids: Option<Vec<String>>
Instance group IDs of the newly created instance groups.
cluster_arn: Option<String>
The Amazon Resource Name of the cluster.
Implementations§
source§impl AddInstanceGroupsOutput
impl AddInstanceGroupsOutput
sourcepub fn job_flow_id(&self) -> Option<&str>
pub fn job_flow_id(&self) -> Option<&str>
The job flow ID in which the instance groups are added.
sourcepub fn instance_group_ids(&self) -> &[String]
pub fn instance_group_ids(&self) -> &[String]
Instance group IDs of the newly created instance groups.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .instance_group_ids.is_none()
.
sourcepub fn cluster_arn(&self) -> Option<&str>
pub fn cluster_arn(&self) -> Option<&str>
The Amazon Resource Name of the cluster.
source§impl AddInstanceGroupsOutput
impl AddInstanceGroupsOutput
sourcepub fn builder() -> AddInstanceGroupsOutputBuilder
pub fn builder() -> AddInstanceGroupsOutputBuilder
Creates a new builder-style object to manufacture AddInstanceGroupsOutput
.
Trait Implementations§
source§impl Clone for AddInstanceGroupsOutput
impl Clone for AddInstanceGroupsOutput
source§fn clone(&self) -> AddInstanceGroupsOutput
fn clone(&self) -> AddInstanceGroupsOutput
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 AddInstanceGroupsOutput
impl Debug for AddInstanceGroupsOutput
source§impl PartialEq for AddInstanceGroupsOutput
impl PartialEq for AddInstanceGroupsOutput
source§fn eq(&self, other: &AddInstanceGroupsOutput) -> bool
fn eq(&self, other: &AddInstanceGroupsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for AddInstanceGroupsOutput
impl RequestId for AddInstanceGroupsOutput
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 AddInstanceGroupsOutput
Auto Trait Implementations§
impl RefUnwindSafe for AddInstanceGroupsOutput
impl Send for AddInstanceGroupsOutput
impl Sync for AddInstanceGroupsOutput
impl Unpin for AddInstanceGroupsOutput
impl UnwindSafe for AddInstanceGroupsOutput
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.