aws_sdk_sagemaker/client/
send_pipeline_execution_step_success.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`SendPipelineExecutionStepSuccess`](crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`callback_token(impl Into<String>)`](crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder::callback_token) / [`set_callback_token(Option<String>)`](crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder::set_callback_token):<br>required: **true**<br><p>The pipeline generated token from the Amazon SQS queue.</p><br>
7    ///   - [`output_parameters(OutputParameter)`](crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder::output_parameters) / [`set_output_parameters(Option<Vec::<OutputParameter>>)`](crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder::set_output_parameters):<br>required: **false**<br><p>A list of the output parameters of the callback step.</p><br>
8    ///   - [`client_request_token(impl Into<String>)`](crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder::client_request_token) / [`set_client_request_token(Option<String>)`](crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder::set_client_request_token):<br>required: **false**<br><p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.</p><br>
9    /// - On success, responds with [`SendPipelineExecutionStepSuccessOutput`](crate::operation::send_pipeline_execution_step_success::SendPipelineExecutionStepSuccessOutput) with field(s):
10    ///   - [`pipeline_execution_arn(Option<String>)`](crate::operation::send_pipeline_execution_step_success::SendPipelineExecutionStepSuccessOutput::pipeline_execution_arn): <p>The Amazon Resource Name (ARN) of the pipeline execution.</p>
11    /// - On failure, responds with [`SdkError<SendPipelineExecutionStepSuccessError>`](crate::operation::send_pipeline_execution_step_success::SendPipelineExecutionStepSuccessError)
12    pub fn send_pipeline_execution_step_success(
13        &self,
14    ) -> crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder {
15        crate::operation::send_pipeline_execution_step_success::builders::SendPipelineExecutionStepSuccessFluentBuilder::new(self.handle.clone())
16    }
17}