Amazon.ElasticMapReduce.Model.JobFlowInstancesDetail.JobFlowInstancesDetail C# (CSharp) Метод

JobFlowInstancesDetail() публичный Метод

Instantiates JobFlowInstancesDetail with the parameterized properties
public JobFlowInstancesDetail ( string masterInstanceType, string slaveInstanceType, int instanceCount ) : System
masterInstanceType string The Amazon EC2 master node instance type.
slaveInstanceType string The Amazon EC2 slave node instance type.
instanceCount int The number of Amazon EC2 instances in the cluster. If the value is 1, the same instance serves as both the master and slave node. If the value is greater than 1, one instance is the master node and all others are slave nodes.
Результат System
        public JobFlowInstancesDetail(string masterInstanceType, string slaveInstanceType, int instanceCount)
        {
            _masterInstanceType = masterInstanceType;
            _slaveInstanceType = slaveInstanceType;
            _instanceCount = instanceCount;
        }

Same methods

JobFlowInstancesDetail::JobFlowInstancesDetail ( ) : System