Struct aws_sdk_machinelearning::operation::create_data_source_from_redshift::builders::CreateDataSourceFromRedshiftInputBuilder
source · #[non_exhaustive]pub struct CreateDataSourceFromRedshiftInputBuilder { /* private fields */ }
Expand description
A builder for CreateDataSourceFromRedshiftInput
.
Implementations§
source§impl CreateDataSourceFromRedshiftInputBuilder
impl CreateDataSourceFromRedshiftInputBuilder
sourcepub fn data_source_id(self, input: impl Into<String>) -> Self
pub fn data_source_id(self, input: impl Into<String>) -> Self
A user-supplied ID that uniquely identifies the DataSource
.
sourcepub fn set_data_source_id(self, input: Option<String>) -> Self
pub fn set_data_source_id(self, input: Option<String>) -> Self
A user-supplied ID that uniquely identifies the DataSource
.
sourcepub fn get_data_source_id(&self) -> &Option<String>
pub fn get_data_source_id(&self) -> &Option<String>
A user-supplied ID that uniquely identifies the DataSource
.
sourcepub fn data_source_name(self, input: impl Into<String>) -> Self
pub fn data_source_name(self, input: impl Into<String>) -> Self
A user-supplied name or description of the DataSource
.
sourcepub fn set_data_source_name(self, input: Option<String>) -> Self
pub fn set_data_source_name(self, input: Option<String>) -> Self
A user-supplied name or description of the DataSource
.
sourcepub fn get_data_source_name(&self) -> &Option<String>
pub fn get_data_source_name(&self) -> &Option<String>
A user-supplied name or description of the DataSource
.
sourcepub fn data_spec(self, input: RedshiftDataSpec) -> Self
pub fn data_spec(self, input: RedshiftDataSpec) -> Self
The data specification of an Amazon Redshift DataSource
:
-
DatabaseInformation -
-
DatabaseName
- The name of the Amazon Redshift database. -
ClusterIdentifier
- The unique ID for the Amazon Redshift cluster.
-
-
DatabaseCredentials - The AWS Identity and Access Management (IAM) credentials that are used to connect to the Amazon Redshift database.
-
SelectSqlQuery - The query that is used to retrieve the observation data for the
Datasource
. -
S3StagingLocation - The Amazon Simple Storage Service (Amazon S3) location for staging Amazon Redshift data. The data retrieved from Amazon Redshift using the
SelectSqlQuery
query is stored in this location. -
DataSchemaUri - The Amazon S3 location of the
DataSchema
. -
DataSchema - A JSON string representing the schema. This is not required if
DataSchemaUri
is specified. -
DataRearrangement - A JSON string that represents the splitting and rearrangement requirements for the
DataSource
.Sample -
"{\"splitting\":{\"percentBegin\":10,\"percentEnd\":60}}"
sourcepub fn set_data_spec(self, input: Option<RedshiftDataSpec>) -> Self
pub fn set_data_spec(self, input: Option<RedshiftDataSpec>) -> Self
The data specification of an Amazon Redshift DataSource
:
-
DatabaseInformation -
-
DatabaseName
- The name of the Amazon Redshift database. -
ClusterIdentifier
- The unique ID for the Amazon Redshift cluster.
-
-
DatabaseCredentials - The AWS Identity and Access Management (IAM) credentials that are used to connect to the Amazon Redshift database.
-
SelectSqlQuery - The query that is used to retrieve the observation data for the
Datasource
. -
S3StagingLocation - The Amazon Simple Storage Service (Amazon S3) location for staging Amazon Redshift data. The data retrieved from Amazon Redshift using the
SelectSqlQuery
query is stored in this location. -
DataSchemaUri - The Amazon S3 location of the
DataSchema
. -
DataSchema - A JSON string representing the schema. This is not required if
DataSchemaUri
is specified. -
DataRearrangement - A JSON string that represents the splitting and rearrangement requirements for the
DataSource
.Sample -
"{\"splitting\":{\"percentBegin\":10,\"percentEnd\":60}}"
sourcepub fn get_data_spec(&self) -> &Option<RedshiftDataSpec>
pub fn get_data_spec(&self) -> &Option<RedshiftDataSpec>
The data specification of an Amazon Redshift DataSource
:
-
DatabaseInformation -
-
DatabaseName
- The name of the Amazon Redshift database. -
ClusterIdentifier
- The unique ID for the Amazon Redshift cluster.
-
-
DatabaseCredentials - The AWS Identity and Access Management (IAM) credentials that are used to connect to the Amazon Redshift database.
-
SelectSqlQuery - The query that is used to retrieve the observation data for the
Datasource
. -
S3StagingLocation - The Amazon Simple Storage Service (Amazon S3) location for staging Amazon Redshift data. The data retrieved from Amazon Redshift using the
SelectSqlQuery
query is stored in this location. -
DataSchemaUri - The Amazon S3 location of the
DataSchema
. -
DataSchema - A JSON string representing the schema. This is not required if
DataSchemaUri
is specified. -
DataRearrangement - A JSON string that represents the splitting and rearrangement requirements for the
DataSource
.Sample -
"{\"splitting\":{\"percentBegin\":10,\"percentEnd\":60}}"
sourcepub fn role_arn(self, input: impl Into<String>) -> Self
pub fn role_arn(self, input: impl Into<String>) -> Self
A fully specified role Amazon Resource Name (ARN). Amazon ML assumes the role on behalf of the user to create the following:
-
A security group to allow Amazon ML to execute the
SelectSqlQuery
query on an Amazon Redshift cluster -
An Amazon S3 bucket policy to grant Amazon ML read/write permissions on the
S3StagingLocation
sourcepub fn set_role_arn(self, input: Option<String>) -> Self
pub fn set_role_arn(self, input: Option<String>) -> Self
A fully specified role Amazon Resource Name (ARN). Amazon ML assumes the role on behalf of the user to create the following:
-
A security group to allow Amazon ML to execute the
SelectSqlQuery
query on an Amazon Redshift cluster -
An Amazon S3 bucket policy to grant Amazon ML read/write permissions on the
S3StagingLocation
sourcepub fn get_role_arn(&self) -> &Option<String>
pub fn get_role_arn(&self) -> &Option<String>
A fully specified role Amazon Resource Name (ARN). Amazon ML assumes the role on behalf of the user to create the following:
-
A security group to allow Amazon ML to execute the
SelectSqlQuery
query on an Amazon Redshift cluster -
An Amazon S3 bucket policy to grant Amazon ML read/write permissions on the
S3StagingLocation
sourcepub fn compute_statistics(self, input: bool) -> Self
pub fn compute_statistics(self, input: bool) -> Self
The compute statistics for a DataSource
. The statistics are generated from the observation data referenced by a DataSource
. Amazon ML uses the statistics internally during MLModel
training. This parameter must be set to true
if the DataSource
needs to be used for MLModel
training.
sourcepub fn set_compute_statistics(self, input: Option<bool>) -> Self
pub fn set_compute_statistics(self, input: Option<bool>) -> Self
The compute statistics for a DataSource
. The statistics are generated from the observation data referenced by a DataSource
. Amazon ML uses the statistics internally during MLModel
training. This parameter must be set to true
if the DataSource
needs to be used for MLModel
training.
sourcepub fn get_compute_statistics(&self) -> &Option<bool>
pub fn get_compute_statistics(&self) -> &Option<bool>
The compute statistics for a DataSource
. The statistics are generated from the observation data referenced by a DataSource
. Amazon ML uses the statistics internally during MLModel
training. This parameter must be set to true
if the DataSource
needs to be used for MLModel
training.
sourcepub fn build(self) -> Result<CreateDataSourceFromRedshiftInput, BuildError>
pub fn build(self) -> Result<CreateDataSourceFromRedshiftInput, BuildError>
Consumes the builder and constructs a CreateDataSourceFromRedshiftInput
.
source§impl CreateDataSourceFromRedshiftInputBuilder
impl CreateDataSourceFromRedshiftInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateDataSourceFromRedshiftOutput, SdkError<CreateDataSourceFromRedshiftError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateDataSourceFromRedshiftOutput, SdkError<CreateDataSourceFromRedshiftError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateDataSourceFromRedshiftInputBuilder
impl Clone for CreateDataSourceFromRedshiftInputBuilder
source§fn clone(&self) -> CreateDataSourceFromRedshiftInputBuilder
fn clone(&self) -> CreateDataSourceFromRedshiftInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateDataSourceFromRedshiftInputBuilder
impl Default for CreateDataSourceFromRedshiftInputBuilder
source§fn default() -> CreateDataSourceFromRedshiftInputBuilder
fn default() -> CreateDataSourceFromRedshiftInputBuilder
source§impl PartialEq for CreateDataSourceFromRedshiftInputBuilder
impl PartialEq for CreateDataSourceFromRedshiftInputBuilder
source§fn eq(&self, other: &CreateDataSourceFromRedshiftInputBuilder) -> bool
fn eq(&self, other: &CreateDataSourceFromRedshiftInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.