Struct aws_sdk_emr::input::AddJobFlowStepsInput
source · #[non_exhaustive]pub struct AddJobFlowStepsInput { /* private fields */ }Expand description
The input argument to the AddJobFlowSteps operation.
Implementations§
source§impl AddJobFlowStepsInput
impl AddJobFlowStepsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddJobFlowSteps, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<AddJobFlowSteps, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<AddJobFlowSteps>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AddJobFlowStepsInput.
source§impl AddJobFlowStepsInput
impl AddJobFlowStepsInput
sourcepub fn job_flow_id(&self) -> Option<&str>
pub fn job_flow_id(&self) -> Option<&str>
A string that uniquely identifies the job flow. This identifier is returned by RunJobFlow and can also be obtained from ListClusters.
sourcepub fn steps(&self) -> Option<&[StepConfig]>
pub fn steps(&self) -> Option<&[StepConfig]>
A list of StepConfig to be executed by the job flow.
sourcepub fn execution_role_arn(&self) -> Option<&str>
pub fn execution_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the runtime role for a step on the cluster. The runtime role can be a cross-account IAM role. The runtime role ARN is a combination of account ID, role name, and role type using the following format: arn:partition:service:region:account:resource.
For example, arn:aws:iam::1234567890:role/ReadOnly is a correctly formatted runtime role ARN.
Trait Implementations§
source§impl Clone for AddJobFlowStepsInput
impl Clone for AddJobFlowStepsInput
source§fn clone(&self) -> AddJobFlowStepsInput
fn clone(&self) -> AddJobFlowStepsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AddJobFlowStepsInput
impl Debug for AddJobFlowStepsInput
source§impl PartialEq<AddJobFlowStepsInput> for AddJobFlowStepsInput
impl PartialEq<AddJobFlowStepsInput> for AddJobFlowStepsInput
source§fn eq(&self, other: &AddJobFlowStepsInput) -> bool
fn eq(&self, other: &AddJobFlowStepsInput) -> bool
self and other values to be equal, and is used
by ==.