Struct aws_sdk_osis::types::Pipeline
source · #[non_exhaustive]pub struct Pipeline {Show 16 fields
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>>,
pub buffer_options: Option<BufferOptions>,
pub encryption_at_rest_options: Option<EncryptionAtRestOptions>,
pub service_vpc_endpoints: Option<Vec<ServiceVpcEndpoint>>,
pub tags: Option<Vec<Tag>>,
}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: i32The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
max_units: i32The 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.
buffer_options: Option<BufferOptions>Options that specify the configuration of a persistent buffer. To configure how OpenSearch Ingestion encrypts this data, set the EncryptionAtRestOptions.
encryption_at_rest_options: Option<EncryptionAtRestOptions>Options to control how OpenSearch encrypts all data-at-rest.
service_vpc_endpoints: Option<Vec<ServiceVpcEndpoint>>A list of VPC endpoints that OpenSearch Ingestion has created to other AWS services.
A list of tags associated with the given 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) -> &[String]
pub fn ingest_endpoint_urls(&self) -> &[String]
The ingestion endpoints for the pipeline, which you can send data to.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ingest_endpoint_urls.is_none().
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) -> &[VpcEndpoint]
pub fn vpc_endpoints(&self) -> &[VpcEndpoint]
The VPC interface endpoints that have access to the pipeline.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .vpc_endpoints.is_none().
sourcepub fn buffer_options(&self) -> Option<&BufferOptions>
pub fn buffer_options(&self) -> Option<&BufferOptions>
Options that specify the configuration of a persistent buffer. To configure how OpenSearch Ingestion encrypts this data, set the EncryptionAtRestOptions.
sourcepub fn encryption_at_rest_options(&self) -> Option<&EncryptionAtRestOptions>
pub fn encryption_at_rest_options(&self) -> Option<&EncryptionAtRestOptions>
Options to control how OpenSearch encrypts all data-at-rest.
sourcepub fn service_vpc_endpoints(&self) -> &[ServiceVpcEndpoint]
pub fn service_vpc_endpoints(&self) -> &[ServiceVpcEndpoint]
A list of VPC endpoints that OpenSearch Ingestion has created to other AWS services.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .service_vpc_endpoints.is_none().
A list of tags associated with the given pipeline.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().