Struct aws_sdk_bedrockagent::operation::create_data_source::builders::CreateDataSourceFluentBuilder
source · pub struct CreateDataSourceFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateDataSource.
Create a new data source
Implementations§
source§impl CreateDataSourceFluentBuilder
impl CreateDataSourceFluentBuilder
sourcepub fn as_input(&self) -> &CreateDataSourceInputBuilder
pub fn as_input(&self) -> &CreateDataSourceInputBuilder
Access the CreateDataSource as a reference.
sourcepub async fn send(
self
) -> Result<CreateDataSourceOutput, SdkError<CreateDataSourceError, HttpResponse>>
pub async fn send( self ) -> Result<CreateDataSourceOutput, SdkError<CreateDataSourceError, 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 fn customize(
self
) -> CustomizableOperation<CreateDataSourceOutput, CreateDataSourceError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateDataSourceOutput, CreateDataSourceError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn knowledge_base_id(self, input: impl Into<String>) -> Self
pub fn knowledge_base_id(self, input: impl Into<String>) -> Self
Identifier for a resource.
sourcepub fn set_knowledge_base_id(self, input: Option<String>) -> Self
pub fn set_knowledge_base_id(self, input: Option<String>) -> Self
Identifier for a resource.
sourcepub fn get_knowledge_base_id(&self) -> &Option<String>
pub fn get_knowledge_base_id(&self) -> &Option<String>
Identifier for a resource.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Client specified token used for idempotency checks
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Client specified token used for idempotency checks
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
Client specified token used for idempotency checks
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
Description of the Resource.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
Description of the Resource.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
Description of the Resource.
sourcepub fn data_source_configuration(self, input: DataSourceConfiguration) -> Self
pub fn data_source_configuration(self, input: DataSourceConfiguration) -> Self
Specifies a raw data source location to ingest.
sourcepub fn set_data_source_configuration(
self,
input: Option<DataSourceConfiguration>
) -> Self
pub fn set_data_source_configuration( self, input: Option<DataSourceConfiguration> ) -> Self
Specifies a raw data source location to ingest.
sourcepub fn get_data_source_configuration(&self) -> &Option<DataSourceConfiguration>
pub fn get_data_source_configuration(&self) -> &Option<DataSourceConfiguration>
Specifies a raw data source location to ingest.
sourcepub fn server_side_encryption_configuration(
self,
input: ServerSideEncryptionConfiguration
) -> Self
pub fn server_side_encryption_configuration( self, input: ServerSideEncryptionConfiguration ) -> Self
Server-side encryption configuration.
sourcepub fn set_server_side_encryption_configuration(
self,
input: Option<ServerSideEncryptionConfiguration>
) -> Self
pub fn set_server_side_encryption_configuration( self, input: Option<ServerSideEncryptionConfiguration> ) -> Self
Server-side encryption configuration.
sourcepub fn get_server_side_encryption_configuration(
&self
) -> &Option<ServerSideEncryptionConfiguration>
pub fn get_server_side_encryption_configuration( &self ) -> &Option<ServerSideEncryptionConfiguration>
Server-side encryption configuration.
sourcepub fn vector_ingestion_configuration(
self,
input: VectorIngestionConfiguration
) -> Self
pub fn vector_ingestion_configuration( self, input: VectorIngestionConfiguration ) -> Self
Configures ingestion for a vector knowledge base
sourcepub fn set_vector_ingestion_configuration(
self,
input: Option<VectorIngestionConfiguration>
) -> Self
pub fn set_vector_ingestion_configuration( self, input: Option<VectorIngestionConfiguration> ) -> Self
Configures ingestion for a vector knowledge base
sourcepub fn get_vector_ingestion_configuration(
&self
) -> &Option<VectorIngestionConfiguration>
pub fn get_vector_ingestion_configuration( &self ) -> &Option<VectorIngestionConfiguration>
Configures ingestion for a vector knowledge base
Trait Implementations§
source§impl Clone for CreateDataSourceFluentBuilder
impl Clone for CreateDataSourceFluentBuilder
source§fn clone(&self) -> CreateDataSourceFluentBuilder
fn clone(&self) -> CreateDataSourceFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more