FileSystemDescription constructor

FileSystemDescription({
  1. required DateTime creationTime,
  2. required String creationToken,
  3. required String fileSystemId,
  4. required LifeCycleState lifeCycleState,
  5. required int numberOfMountTargets,
  6. required String ownerId,
  7. required PerformanceMode performanceMode,
  8. required FileSystemSize sizeInBytes,
  9. required List<Tag> tags,
  10. bool? encrypted,
  11. String? fileSystemArn,
  12. String? kmsKeyId,
  13. String? name,
  14. double? provisionedThroughputInMibps,
  15. ThroughputMode? throughputMode,
})

Implementation

FileSystemDescription({
  required this.creationTime,
  required this.creationToken,
  required this.fileSystemId,
  required this.lifeCycleState,
  required this.numberOfMountTargets,
  required this.ownerId,
  required this.performanceMode,
  required this.sizeInBytes,
  required this.tags,
  this.encrypted,
  this.fileSystemArn,
  this.kmsKeyId,
  this.name,
  this.provisionedThroughputInMibps,
  this.throughputMode,
});