NeptuneSettings constructor

NeptuneSettings({
  1. required String s3BucketFolder,
  2. required String s3BucketName,
  3. int? errorRetryDuration,
  4. bool? iamAuthEnabled,
  5. int? maxFileSize,
  6. int? maxRetryCount,
  7. String? serviceAccessRoleArn,
})

Implementation

NeptuneSettings({
  required this.s3BucketFolder,
  required this.s3BucketName,
  this.errorRetryDuration,
  this.iamAuthEnabled,
  this.maxFileSize,
  this.maxRetryCount,
  this.serviceAccessRoleArn,
});