Struct aws_sdk_pipes::model::PipeTargetParameters
source · #[non_exhaustive]pub struct PipeTargetParameters { /* private fields */ }
Expand description
The parameters required to set up a target for your pipe.
Implementations§
source§impl PipeTargetParameters
impl PipeTargetParameters
sourcepub fn input_template(&self) -> Option<&str>
pub fn input_template(&self) -> Option<&str>
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
) -> Option<&PipeTargetLambdaFunctionParameters>
pub fn lambda_function_parameters(
&self
) -> Option<&PipeTargetLambdaFunctionParameters>
The parameters for using a Lambda function as a target.
sourcepub fn step_function_state_machine_parameters(
&self
) -> Option<&PipeTargetStateMachineParameters>
pub fn step_function_state_machine_parameters(
&self
) -> Option<&PipeTargetStateMachineParameters>
The parameters for using a Step Functions state machine as a target.
sourcepub fn kinesis_stream_parameters(
&self
) -> Option<&PipeTargetKinesisStreamParameters>
pub fn kinesis_stream_parameters(
&self
) -> Option<&PipeTargetKinesisStreamParameters>
The parameters for using a Kinesis stream as a source.
sourcepub fn ecs_task_parameters(&self) -> Option<&PipeTargetEcsTaskParameters>
pub fn ecs_task_parameters(&self) -> Option<&PipeTargetEcsTaskParameters>
The parameters for using an Amazon ECS task as a target.
sourcepub fn batch_job_parameters(&self) -> Option<&PipeTargetBatchJobParameters>
pub fn batch_job_parameters(&self) -> Option<&PipeTargetBatchJobParameters>
The parameters for using an Batch job as a target.
sourcepub fn sqs_queue_parameters(&self) -> Option<&PipeTargetSqsQueueParameters>
pub fn sqs_queue_parameters(&self) -> Option<&PipeTargetSqsQueueParameters>
The parameters for using a Amazon SQS stream as a source.
sourcepub fn http_parameters(&self) -> Option<&PipeTargetHttpParameters>
pub fn http_parameters(&self) -> Option<&PipeTargetHttpParameters>
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
) -> Option<&PipeTargetRedshiftDataParameters>
pub fn redshift_data_parameters(
&self
) -> Option<&PipeTargetRedshiftDataParameters>
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
) -> Option<&PipeTargetSageMakerPipelineParameters>
pub fn sage_maker_pipeline_parameters(
&self
) -> Option<&PipeTargetSageMakerPipelineParameters>
The parameters for using a SageMaker pipeline as a target.
sourcepub fn event_bridge_event_bus_parameters(
&self
) -> Option<&PipeTargetEventBridgeEventBusParameters>
pub fn event_bridge_event_bus_parameters(
&self
) -> Option<&PipeTargetEventBridgeEventBusParameters>
The parameters for using an EventBridge event bus as a target.
sourcepub fn cloud_watch_logs_parameters(
&self
) -> Option<&PipeTargetCloudWatchLogsParameters>
pub fn cloud_watch_logs_parameters(
&self
) -> Option<&PipeTargetCloudWatchLogsParameters>
The parameters for using an CloudWatch Logs log stream as a target.
source§impl PipeTargetParameters
impl PipeTargetParameters
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PipeTargetParameters
.
Trait Implementations§
source§impl Clone for PipeTargetParameters
impl Clone for PipeTargetParameters
source§fn clone(&self) -> PipeTargetParameters
fn clone(&self) -> PipeTargetParameters
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PipeTargetParameters
impl Debug for PipeTargetParameters
source§impl PartialEq<PipeTargetParameters> for PipeTargetParameters
impl PartialEq<PipeTargetParameters> for PipeTargetParameters
source§fn eq(&self, other: &PipeTargetParameters) -> bool
fn eq(&self, other: &PipeTargetParameters) -> bool
self
and other
values to be equal, and is used
by ==
.