pub struct ValidatePipelineFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to ValidatePipeline
.
Checks whether an OpenSearch Ingestion pipeline configuration is valid prior to creation. For more information, see Creating Amazon OpenSearch Ingestion pipelines.
Implementations§
source§impl ValidatePipelineFluentBuilder
impl ValidatePipelineFluentBuilder
sourcepub fn as_input(&self) -> &ValidatePipelineInputBuilder
pub fn as_input(&self) -> &ValidatePipelineInputBuilder
Access the ValidatePipeline as a reference.
sourcepub async fn send(
self
) -> Result<ValidatePipelineOutput, SdkError<ValidatePipelineError, HttpResponse>>
pub async fn send( self ) -> Result<ValidatePipelineOutput, SdkError<ValidatePipelineError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<ValidatePipelineOutput, ValidatePipelineError, Self>, SdkError<ValidatePipelineError>>
pub async fn customize( self ) -> Result<CustomizableOperation<ValidatePipelineOutput, ValidatePipelineError, Self>, SdkError<ValidatePipelineError>>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn pipeline_configuration_body(self, input: impl Into<String>) -> Self
pub fn pipeline_configuration_body(self, input: impl Into<String>) -> Self
The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n
.
sourcepub fn set_pipeline_configuration_body(self, input: Option<String>) -> Self
pub fn set_pipeline_configuration_body(self, input: Option<String>) -> Self
The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n
.
sourcepub fn get_pipeline_configuration_body(&self) -> &Option<String>
pub fn get_pipeline_configuration_body(&self) -> &Option<String>
The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n
.
Trait Implementations§
source§impl Clone for ValidatePipelineFluentBuilder
impl Clone for ValidatePipelineFluentBuilder
source§fn clone(&self) -> ValidatePipelineFluentBuilder
fn clone(&self) -> ValidatePipelineFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more