Struct aws_sdk_osis::types::PipelineBlueprint
source · #[non_exhaustive]pub struct PipelineBlueprint {
pub blueprint_name: Option<String>,
pub pipeline_configuration_body: Option<String>,
}Expand description
Container for information about an OpenSearch Ingestion blueprint.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.blueprint_name: Option<String>The name of the blueprint.
pipeline_configuration_body: Option<String>The YAML configuration of the blueprint.
Implementations§
source§impl PipelineBlueprint
impl PipelineBlueprint
sourcepub fn blueprint_name(&self) -> Option<&str>
pub fn blueprint_name(&self) -> Option<&str>
The name of the blueprint.
sourcepub fn pipeline_configuration_body(&self) -> Option<&str>
pub fn pipeline_configuration_body(&self) -> Option<&str>
The YAML configuration of the blueprint.
source§impl PipelineBlueprint
impl PipelineBlueprint
sourcepub fn builder() -> PipelineBlueprintBuilder
pub fn builder() -> PipelineBlueprintBuilder
Creates a new builder-style object to manufacture PipelineBlueprint.
Trait Implementations§
source§impl Clone for PipelineBlueprint
impl Clone for PipelineBlueprint
source§fn clone(&self) -> PipelineBlueprint
fn clone(&self) -> PipelineBlueprint
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for PipelineBlueprint
impl Debug for PipelineBlueprint
source§impl PartialEq<PipelineBlueprint> for PipelineBlueprint
impl PartialEq<PipelineBlueprint> for PipelineBlueprint
source§fn eq(&self, other: &PipelineBlueprint) -> bool
fn eq(&self, other: &PipelineBlueprint) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PipelineBlueprint
Auto Trait Implementations§
impl RefUnwindSafe for PipelineBlueprint
impl Send for PipelineBlueprint
impl Sync for PipelineBlueprint
impl Unpin for PipelineBlueprint
impl UnwindSafe for PipelineBlueprint
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
Mutably borrows from an owned value. Read more