Struct aws_sdk_osis::types::builders::PipelineBuilder
source · #[non_exhaustive]pub struct PipelineBuilder { /* private fields */ }Expand description
A builder for Pipeline.
Implementations§
source§impl PipelineBuilder
impl PipelineBuilder
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name of the pipeline.
sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name of the pipeline.
sourcepub fn pipeline_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn set_pipeline_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn min_units(self, input: i32) -> Self
pub fn min_units(self, input: i32) -> Self
The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
sourcepub fn set_min_units(self, input: Option<i32>) -> Self
pub fn set_min_units(self, input: Option<i32>) -> Self
The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
sourcepub fn max_units(self, input: i32) -> Self
pub fn max_units(self, input: i32) -> Self
The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
sourcepub fn set_max_units(self, input: Option<i32>) -> Self
pub fn set_max_units(self, input: Option<i32>) -> Self
The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
sourcepub fn status(self, input: PipelineStatus) -> Self
pub fn status(self, input: PipelineStatus) -> Self
The current status of the pipeline.
sourcepub fn set_status(self, input: Option<PipelineStatus>) -> Self
pub fn set_status(self, input: Option<PipelineStatus>) -> Self
The current status of the pipeline.
sourcepub fn status_reason(self, input: PipelineStatusReason) -> Self
pub fn status_reason(self, input: PipelineStatusReason) -> Self
The reason for the current status of the pipeline.
sourcepub fn set_status_reason(self, input: Option<PipelineStatusReason>) -> Self
pub fn set_status_reason(self, input: Option<PipelineStatusReason>) -> Self
The reason for the current status of the pipeline.
sourcepub fn pipeline_configuration_body(self, input: impl Into<String>) -> Self
pub fn pipeline_configuration_body(self, input: impl Into<String>) -> Self
The Data Prepper pipeline configuration in YAML format.
sourcepub fn set_pipeline_configuration_body(self, input: Option<String>) -> Self
pub fn set_pipeline_configuration_body(self, input: Option<String>) -> Self
The Data Prepper pipeline configuration in YAML format.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The date and time when the pipeline was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The date and time when the pipeline was created.
sourcepub fn last_updated_at(self, input: DateTime) -> Self
pub fn last_updated_at(self, input: DateTime) -> Self
The date and time when the pipeline was last updated.
sourcepub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_at(self, input: Option<DateTime>) -> Self
The date and time when the pipeline was last updated.
sourcepub fn ingest_endpoint_urls(self, input: impl Into<String>) -> Self
pub fn ingest_endpoint_urls(self, input: impl Into<String>) -> Self
Appends an item to ingest_endpoint_urls.
To override the contents of this collection use set_ingest_endpoint_urls.
The ingestion endpoints for the pipeline, which you can send data to.
sourcepub fn set_ingest_endpoint_urls(self, input: Option<Vec<String>>) -> Self
pub fn set_ingest_endpoint_urls(self, input: Option<Vec<String>>) -> Self
The ingestion endpoints for the pipeline, which you can send data to.
sourcepub fn log_publishing_options(self, input: LogPublishingOptions) -> Self
pub fn log_publishing_options(self, input: LogPublishingOptions) -> Self
Key-value pairs that represent log publishing settings.
sourcepub fn set_log_publishing_options(
self,
input: Option<LogPublishingOptions>
) -> Self
pub fn set_log_publishing_options( self, input: Option<LogPublishingOptions> ) -> Self
Key-value pairs that represent log publishing settings.
sourcepub fn vpc_endpoints(self, input: VpcEndpoint) -> Self
pub fn vpc_endpoints(self, input: VpcEndpoint) -> Self
Appends an item to vpc_endpoints.
To override the contents of this collection use set_vpc_endpoints.
The VPC interface endpoints that have access to the pipeline.
sourcepub fn set_vpc_endpoints(self, input: Option<Vec<VpcEndpoint>>) -> Self
pub fn set_vpc_endpoints(self, input: Option<Vec<VpcEndpoint>>) -> Self
The VPC interface endpoints that have access to the pipeline.
Trait Implementations§
source§impl Clone for PipelineBuilder
impl Clone for PipelineBuilder
source§fn clone(&self) -> PipelineBuilder
fn clone(&self) -> PipelineBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PipelineBuilder
impl Debug for PipelineBuilder
source§impl Default for PipelineBuilder
impl Default for PipelineBuilder
source§fn default() -> PipelineBuilder
fn default() -> PipelineBuilder
source§impl PartialEq<PipelineBuilder> for PipelineBuilder
impl PartialEq<PipelineBuilder> for PipelineBuilder
source§fn eq(&self, other: &PipelineBuilder) -> bool
fn eq(&self, other: &PipelineBuilder) -> bool
self and other values to be equal, and is used
by ==.