Struct aws_sdk_osis::types::Pipeline
source · #[non_exhaustive]pub struct Pipeline {
pub pipeline_name: Option<String>,
pub pipeline_arn: Option<String>,
pub min_units: i32,
pub max_units: i32,
pub status: Option<PipelineStatus>,
pub status_reason: Option<PipelineStatusReason>,
pub pipeline_configuration_body: Option<String>,
pub created_at: Option<DateTime>,
pub last_updated_at: Option<DateTime>,
pub ingest_endpoint_urls: Option<Vec<String>>,
pub log_publishing_options: Option<LogPublishingOptions>,
pub vpc_endpoints: Option<Vec<VpcEndpoint>>,
}
Expand description
Information about an existing OpenSearch Ingestion pipeline.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_name: Option<String>
The name of the pipeline.
pipeline_arn: Option<String>
The Amazon Resource Name (ARN) of the pipeline.
min_units: i32
The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
max_units: i32
The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
status: Option<PipelineStatus>
The current status of the pipeline.
status_reason: Option<PipelineStatusReason>
The reason for the current status of the pipeline.
pipeline_configuration_body: Option<String>
The Data Prepper pipeline configuration in YAML format.
created_at: Option<DateTime>
The date and time when the pipeline was created.
last_updated_at: Option<DateTime>
The date and time when the pipeline was last updated.
ingest_endpoint_urls: Option<Vec<String>>
The ingestion endpoints for the pipeline, which you can send data to.
log_publishing_options: Option<LogPublishingOptions>
Key-value pairs that represent log publishing settings.
vpc_endpoints: Option<Vec<VpcEndpoint>>
The VPC interface endpoints that have access to the pipeline.
Implementations§
source§impl Pipeline
impl Pipeline
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline.
sourcepub fn pipeline_arn(&self) -> Option<&str>
pub fn pipeline_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the pipeline.
sourcepub fn min_units(&self) -> i32
pub fn min_units(&self) -> i32
The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
sourcepub fn max_units(&self) -> i32
pub fn max_units(&self) -> i32
The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
sourcepub fn status(&self) -> Option<&PipelineStatus>
pub fn status(&self) -> Option<&PipelineStatus>
The current status of the pipeline.
sourcepub fn status_reason(&self) -> Option<&PipelineStatusReason>
pub fn status_reason(&self) -> Option<&PipelineStatusReason>
The reason for the current status of the pipeline.
sourcepub fn pipeline_configuration_body(&self) -> Option<&str>
pub fn pipeline_configuration_body(&self) -> Option<&str>
The Data Prepper pipeline configuration in YAML format.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The date and time when the pipeline was created.
sourcepub fn last_updated_at(&self) -> Option<&DateTime>
pub fn last_updated_at(&self) -> Option<&DateTime>
The date and time when the pipeline was last updated.
sourcepub fn ingest_endpoint_urls(&self) -> Option<&[String]>
pub fn ingest_endpoint_urls(&self) -> Option<&[String]>
The ingestion endpoints for the pipeline, which you can send data to.
sourcepub fn log_publishing_options(&self) -> Option<&LogPublishingOptions>
pub fn log_publishing_options(&self) -> Option<&LogPublishingOptions>
Key-value pairs that represent log publishing settings.
sourcepub fn vpc_endpoints(&self) -> Option<&[VpcEndpoint]>
pub fn vpc_endpoints(&self) -> Option<&[VpcEndpoint]>
The VPC interface endpoints that have access to the pipeline.