Struct aws_sdk_pipes::model::pipe_target_parameters::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for PipeTargetParameters
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn input_template(self, input: impl Into<String>) -> Self
pub fn input_template(self, input: impl Into<String>) -> Self
Valid JSON text passed to the target. In this case, nothing from the event itself is passed to the target. For more information, see The JavaScript Object Notation (JSON) Data Interchange Format.
sourcepub fn set_input_template(self, input: Option<String>) -> Self
pub fn set_input_template(self, input: Option<String>) -> Self
Valid JSON text passed to the target. In this case, nothing from the event itself is passed to the target. For more information, see The JavaScript Object Notation (JSON) Data Interchange Format.
sourcepub fn lambda_function_parameters(
self,
input: PipeTargetLambdaFunctionParameters
) -> Self
pub fn lambda_function_parameters(
self,
input: PipeTargetLambdaFunctionParameters
) -> Self
The parameters for using a Lambda function as a target.
sourcepub fn set_lambda_function_parameters(
self,
input: Option<PipeTargetLambdaFunctionParameters>
) -> Self
pub fn set_lambda_function_parameters(
self,
input: Option<PipeTargetLambdaFunctionParameters>
) -> Self
The parameters for using a Lambda function as a target.
sourcepub fn step_function_state_machine_parameters(
self,
input: PipeTargetStateMachineParameters
) -> Self
pub fn step_function_state_machine_parameters(
self,
input: PipeTargetStateMachineParameters
) -> Self
The parameters for using a Step Functions state machine as a target.
sourcepub fn set_step_function_state_machine_parameters(
self,
input: Option<PipeTargetStateMachineParameters>
) -> Self
pub fn set_step_function_state_machine_parameters(
self,
input: Option<PipeTargetStateMachineParameters>
) -> Self
The parameters for using a Step Functions state machine as a target.
sourcepub fn kinesis_stream_parameters(
self,
input: PipeTargetKinesisStreamParameters
) -> Self
pub fn kinesis_stream_parameters(
self,
input: PipeTargetKinesisStreamParameters
) -> Self
The parameters for using a Kinesis stream as a source.
sourcepub fn set_kinesis_stream_parameters(
self,
input: Option<PipeTargetKinesisStreamParameters>
) -> Self
pub fn set_kinesis_stream_parameters(
self,
input: Option<PipeTargetKinesisStreamParameters>
) -> Self
The parameters for using a Kinesis stream as a source.
sourcepub fn ecs_task_parameters(self, input: PipeTargetEcsTaskParameters) -> Self
pub fn ecs_task_parameters(self, input: PipeTargetEcsTaskParameters) -> Self
The parameters for using an Amazon ECS task as a target.
sourcepub fn set_ecs_task_parameters(
self,
input: Option<PipeTargetEcsTaskParameters>
) -> Self
pub fn set_ecs_task_parameters(
self,
input: Option<PipeTargetEcsTaskParameters>
) -> Self
The parameters for using an Amazon ECS task as a target.
sourcepub fn batch_job_parameters(self, input: PipeTargetBatchJobParameters) -> Self
pub fn batch_job_parameters(self, input: PipeTargetBatchJobParameters) -> Self
The parameters for using an Batch job as a target.
sourcepub fn set_batch_job_parameters(
self,
input: Option<PipeTargetBatchJobParameters>
) -> Self
pub fn set_batch_job_parameters(
self,
input: Option<PipeTargetBatchJobParameters>
) -> Self
The parameters for using an Batch job as a target.
sourcepub fn sqs_queue_parameters(self, input: PipeTargetSqsQueueParameters) -> Self
pub fn sqs_queue_parameters(self, input: PipeTargetSqsQueueParameters) -> Self
The parameters for using a Amazon SQS stream as a source.
sourcepub fn set_sqs_queue_parameters(
self,
input: Option<PipeTargetSqsQueueParameters>
) -> Self
pub fn set_sqs_queue_parameters(
self,
input: Option<PipeTargetSqsQueueParameters>
) -> Self
The parameters for using a Amazon SQS stream as a source.
sourcepub fn http_parameters(self, input: PipeTargetHttpParameters) -> Self
pub fn http_parameters(self, input: PipeTargetHttpParameters) -> Self
These are custom parameter to be used when the target is an API Gateway REST APIs or EventBridge ApiDestinations.
sourcepub fn set_http_parameters(self, input: Option<PipeTargetHttpParameters>) -> Self
pub fn set_http_parameters(self, input: Option<PipeTargetHttpParameters>) -> Self
These are custom parameter to be used when the target is an API Gateway REST APIs or EventBridge ApiDestinations.
sourcepub fn redshift_data_parameters(
self,
input: PipeTargetRedshiftDataParameters
) -> Self
pub fn redshift_data_parameters(
self,
input: PipeTargetRedshiftDataParameters
) -> Self
These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API ExecuteStatement.
sourcepub fn set_redshift_data_parameters(
self,
input: Option<PipeTargetRedshiftDataParameters>
) -> Self
pub fn set_redshift_data_parameters(
self,
input: Option<PipeTargetRedshiftDataParameters>
) -> Self
These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API ExecuteStatement.
sourcepub fn sage_maker_pipeline_parameters(
self,
input: PipeTargetSageMakerPipelineParameters
) -> Self
pub fn sage_maker_pipeline_parameters(
self,
input: PipeTargetSageMakerPipelineParameters
) -> Self
The parameters for using a SageMaker pipeline as a target.
sourcepub fn set_sage_maker_pipeline_parameters(
self,
input: Option<PipeTargetSageMakerPipelineParameters>
) -> Self
pub fn set_sage_maker_pipeline_parameters(
self,
input: Option<PipeTargetSageMakerPipelineParameters>
) -> Self
The parameters for using a SageMaker pipeline as a target.
sourcepub fn event_bridge_event_bus_parameters(
self,
input: PipeTargetEventBridgeEventBusParameters
) -> Self
pub fn event_bridge_event_bus_parameters(
self,
input: PipeTargetEventBridgeEventBusParameters
) -> Self
The parameters for using an EventBridge event bus as a target.
sourcepub fn set_event_bridge_event_bus_parameters(
self,
input: Option<PipeTargetEventBridgeEventBusParameters>
) -> Self
pub fn set_event_bridge_event_bus_parameters(
self,
input: Option<PipeTargetEventBridgeEventBusParameters>
) -> Self
The parameters for using an EventBridge event bus as a target.
sourcepub fn cloud_watch_logs_parameters(
self,
input: PipeTargetCloudWatchLogsParameters
) -> Self
pub fn cloud_watch_logs_parameters(
self,
input: PipeTargetCloudWatchLogsParameters
) -> Self
The parameters for using an CloudWatch Logs log stream as a target.
sourcepub fn set_cloud_watch_logs_parameters(
self,
input: Option<PipeTargetCloudWatchLogsParameters>
) -> Self
pub fn set_cloud_watch_logs_parameters(
self,
input: Option<PipeTargetCloudWatchLogsParameters>
) -> Self
The parameters for using an CloudWatch Logs log stream as a target.
sourcepub fn build(self) -> PipeTargetParameters
pub fn build(self) -> PipeTargetParameters
Consumes the builder and constructs a PipeTargetParameters
.