AWSMachineLearningRDSMetadata

Objective-C

@interface AWSMachineLearningRDSMetadata

Swift

class AWSMachineLearningRDSMetadata

The datasource details that are specific to Amazon RDS.

  • The ID of the Data Pipeline instance that is used to carry to copy data from Amazon RDS to Amazon S3. You can use the ID to find details about the instance in the Data Pipeline console.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable dataPipelineId;

    Swift

    var dataPipelineId: String? { get set }
  • The database details required to connect to an Amazon RDS.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSMachineLearningRDSDatabase *_Nullable database;

    Swift

    var database: AWSMachineLearningRDSDatabase? { get set }
  • The username to be used by Amazon ML to connect to database on an Amazon RDS instance. The username should have sufficient permissions to execute an RDSSelectSqlQuery query.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable databaseUserName;

    Swift

    var databaseUserName: String? { get set }
  • The role (DataPipelineDefaultResourceRole) assumed by an Amazon EC2 instance to carry out the copy task from Amazon RDS to Amazon S3. For more information, see Role templates for data pipelines.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable resourceRole;

    Swift

    var resourceRole: String? { get set }
  • The SQL query that is supplied during CreateDataSourceFromRDS. Returns only if Verbose is true in GetDataSourceInput.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable selectSqlQuery;

    Swift

    var selectSqlQuery: String? { get set }
  • The role (DataPipelineDefaultRole) assumed by the Data Pipeline service to monitor the progress of the copy task from Amazon RDS to Amazon S3. For more information, see Role templates for data pipelines.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable serviceRole;

    Swift

    var serviceRole: String? { get set }