Struct aws_sdk_osis::types::Pipeline
source · #[non_exhaustive]pub struct Pipeline {Show 18 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 vpc_endpoint_service: Option<String>,
pub service_vpc_endpoints: Option<Vec<ServiceVpcEndpoint>>,
pub destinations: Option<Vec<PipelineDestination>>,
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. For more information, see Persistent buffering.
encryption_at_rest_options: Option<EncryptionAtRestOptions>Options to control how OpenSearch encrypts buffer data.
vpc_endpoint_service: Option<String>The VPC endpoint service name for the pipeline.
service_vpc_endpoints: Option<Vec<ServiceVpcEndpoint>>A list of VPC endpoints that OpenSearch Ingestion has created to other Amazon Web Services services.
destinations: Option<Vec<PipelineDestination>>Destinations to which the pipeline writes data.
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. For more information, see Persistent buffering.
sourcepub fn encryption_at_rest_options(&self) -> Option<&EncryptionAtRestOptions>
pub fn encryption_at_rest_options(&self) -> Option<&EncryptionAtRestOptions>
Options to control how OpenSearch encrypts buffer data.
sourcepub fn vpc_endpoint_service(&self) -> Option<&str>
pub fn vpc_endpoint_service(&self) -> Option<&str>
The VPC endpoint service name for the pipeline.
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 Amazon Web Services 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().
sourcepub fn destinations(&self) -> &[PipelineDestination]
pub fn destinations(&self) -> &[PipelineDestination]
Destinations to which the pipeline writes data.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .destinations.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().
Trait Implementations§
impl StructuralPartialEq for Pipeline
Auto Trait Implementations§
impl Freeze for Pipeline
impl RefUnwindSafe for Pipeline
impl Send for Pipeline
impl Sync for Pipeline
impl Unpin for Pipeline
impl UnwindSafe for Pipeline
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more