ComputeEnvironmentDetail constructor

ComputeEnvironmentDetail({
  1. required String computeEnvironmentArn,
  2. required String computeEnvironmentName,
  3. required String ecsClusterArn,
  4. ComputeResource? computeResources,
  5. String? serviceRole,
  6. CEState? state,
  7. CEStatus? status,
  8. String? statusReason,
  9. Map<String, String>? tags,
  10. CEType? type,
})

Implementation

ComputeEnvironmentDetail({
  required this.computeEnvironmentArn,
  required this.computeEnvironmentName,
  required this.ecsClusterArn,
  this.computeResources,
  this.serviceRole,
  this.state,
  this.status,
  this.statusReason,
  this.tags,
  this.type,
});