Class InstanceGroupArgs
Inherited Members
Namespace: Pulumi.Aws.Emr
Assembly: Pulumi.Aws.dll
Syntax
public sealed class InstanceGroupArgs : ResourceArgs
Constructors
View SourceInstanceGroupArgs()
Declaration
public InstanceGroupArgs()
Properties
View SourceAutoscalingPolicy
The autoscaling policy document. This is a JSON formatted string. See EMR Auto Scaling
Declaration
public Input<string> AutoscalingPolicy { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
BidPrice
If set, the bid price for each EC2 instance in the instance group, expressed in USD. By setting this attribute, the instance group is being declared as a Spot Instance, and will implicitly create a Spot request. Leave this blank to use On-Demand Instances.
Declaration
public Input<string> BidPrice { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ClusterId
ID of the EMR Cluster to attach to. Changing this forces a new resource to be created.
Declaration
public Input<string> ClusterId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ConfigurationsJson
A JSON string for supplying list of configurations specific to the EMR instance group. Note that this can only be changed when using EMR release 5.21 or later.
Declaration
public Input<string> ConfigurationsJson { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
EbsConfigs
One or more ebs_config blocks as defined below. Changing this forces a new resource to be created.
Declaration
public InputList<InstanceGroupEbsConfigArgs> EbsConfigs { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<InstanceGroupEbsConfigArgs> |
EbsOptimized
Indicates whether an Amazon EBS volume is EBS-optimized. Changing this forces a new resource to be created.
Declaration
public Input<bool> EbsOptimized { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
InstanceCount
target number of instances for the instance group. defaults to 0.
Declaration
public Input<int> InstanceCount { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
InstanceType
The EC2 instance type for all instances in the instance group. Changing this forces a new resource to be created.
Declaration
public Input<string> InstanceType { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
Human friendly name given to the instance group. Changing this forces a new resource to be created.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |