DataSource constructor

DataSource({
  1. String? dataSourceArn,
  2. String? description,
  3. DynamodbDataSourceConfig? dynamodbConfig,
  4. ElasticsearchDataSourceConfig? elasticsearchConfig,
  5. HttpDataSourceConfig? httpConfig,
  6. LambdaDataSourceConfig? lambdaConfig,
  7. String? name,
  8. RelationalDatabaseDataSourceConfig? relationalDatabaseConfig,
  9. String? serviceRoleArn,
  10. DataSourceType? type,
})

Implementation

DataSource({
  this.dataSourceArn,
  this.description,
  this.dynamodbConfig,
  this.elasticsearchConfig,
  this.httpConfig,
  this.lambdaConfig,
  this.name,
  this.relationalDatabaseConfig,
  this.serviceRoleArn,
  this.type,
});