JobFlowInstancesDetail constructor

JobFlowInstancesDetail({
  1. required int instanceCount,
  2. required String masterInstanceType,
  3. required String slaveInstanceType,
  4. String? ec2KeyName,
  5. String? ec2SubnetId,
  6. String? hadoopVersion,
  7. List<InstanceGroupDetail>? instanceGroups,
  8. bool? keepJobFlowAliveWhenNoSteps,
  9. String? masterInstanceId,
  10. String? masterPublicDnsName,
  11. int? normalizedInstanceHours,
  12. PlacementType? placement,
  13. bool? terminationProtected,
})

Implementation

JobFlowInstancesDetail({
  required this.instanceCount,
  required this.masterInstanceType,
  required this.slaveInstanceType,
  this.ec2KeyName,
  this.ec2SubnetId,
  this.hadoopVersion,
  this.instanceGroups,
  this.keepJobFlowAliveWhenNoSteps,
  this.masterInstanceId,
  this.masterPublicDnsName,
  this.normalizedInstanceHours,
  this.placement,
  this.terminationProtected,
});