Interface CfnPipe.PipeTargetRedshiftDataParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.PipeTargetRedshiftDataParametersProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.PipeTargetRedshiftDataParametersProperty extends software.amazon.jsii.JsiiSerializable
These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API BatchExecuteStatement.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pipes.*;
 PipeTargetRedshiftDataParametersProperty pipeTargetRedshiftDataParametersProperty = PipeTargetRedshiftDataParametersProperty.builder()
         .database("database")
         .sqls(List.of("sqls"))
         // the properties below are optional
         .dbUser("dbUser")
         .secretManagerArn("secretManagerArn")
         .statementName("statementName")
         .withEvent(false)
         .build();
 

See Also: