Fleet constructor

Fleet({
  1. required String arn,
  2. required ComputeCapacityStatus computeCapacityStatus,
  3. required String instanceType,
  4. required String name,
  5. required FleetState state,
  6. DateTime? createdTime,
  7. String? description,
  8. int? disconnectTimeoutInSeconds,
  9. String? displayName,
  10. DomainJoinInfo? domainJoinInfo,
  11. bool? enableDefaultInternetAccess,
  12. List<FleetError>? fleetErrors,
  13. FleetType? fleetType,
  14. String? iamRoleArn,
  15. int? idleDisconnectTimeoutInSeconds,
  16. String? imageArn,
  17. String? imageName,
  18. int? maxUserDurationInSeconds,
  19. StreamView? streamView,
  20. VpcConfig? vpcConfig,
})

Implementation

Fleet({
  required this.arn,
  required this.computeCapacityStatus,
  required this.instanceType,
  required this.name,
  required this.state,
  this.createdTime,
  this.description,
  this.disconnectTimeoutInSeconds,
  this.displayName,
  this.domainJoinInfo,
  this.enableDefaultInternetAccess,
  this.fleetErrors,
  this.fleetType,
  this.iamRoleArn,
  this.idleDisconnectTimeoutInSeconds,
  this.imageArn,
  this.imageName,
  this.maxUserDurationInSeconds,
  this.streamView,
  this.vpcConfig,
});