Interface CfnPipelineProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipelineProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.695Z") @Stability(Stable) public interface CfnPipelineProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnPipeline.

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.osis.*;
 CfnPipelineProps cfnPipelineProps = CfnPipelineProps.builder()
         .maxUnits(123)
         .minUnits(123)
         .pipelineConfigurationBody("pipelineConfigurationBody")
         .pipelineName("pipelineName")
         // the properties below are optional
         .logPublishingOptions(LogPublishingOptionsProperty.builder()
                 .cloudWatchLogDestination(CloudWatchLogDestinationProperty.builder()
                         .logGroup("logGroup")
                         .build())
                 .isLoggingEnabled(false)
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .vpcOptions(VpcOptionsProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .build();
 
  • Method Details

    • getMaxUnits

      @Stability(Stable) @NotNull Number getMaxUnits()
      The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
    • getMinUnits

      @Stability(Stable) @NotNull Number getMinUnits()
      The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
    • getPipelineConfigurationBody

      @Stability(Stable) @NotNull String getPipelineConfigurationBody()
      The Data Prepper pipeline configuration in YAML format.
    • getPipelineName

      @Stability(Stable) @NotNull String getPipelineName()
      The name of the pipeline.
    • getLogPublishingOptions

      @Stability(Stable) @Nullable default Object getLogPublishingOptions()
      Key-value pairs that represent log publishing settings.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      List of tags to add to the pipeline upon creation.
    • getVpcOptions

      @Stability(Stable) @Nullable default Object getVpcOptions()
      Options that specify the subnets and security groups for an OpenSearch Ingestion VPC endpoint.
    • builder

      @Stability(Stable) static CfnPipelineProps.Builder builder()
      Returns:
      a CfnPipelineProps.Builder of CfnPipelineProps