Show / Hide Table of Contents

Class CfnCluster.AutoTerminationPolicyProperty

An auto-termination policy for an Amazon EMR cluster.

Inheritance
object
CfnCluster.AutoTerminationPolicyProperty
Implements
CfnCluster.IAutoTerminationPolicyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.AutoTerminationPolicyProperty : CfnCluster.IAutoTerminationPolicyProperty
Syntax (vb)
Public Class CfnCluster.AutoTerminationPolicyProperty Implements CfnCluster.IAutoTerminationPolicyProperty
Remarks

An auto-termination policy defines the amount of idle time in seconds after which a cluster automatically terminates. For alternative cluster termination options, see Control cluster termination .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-autoterminationpolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EMR;

             var autoTerminationPolicyProperty = new AutoTerminationPolicyProperty {
                 IdleTimeout = 123
             };

Synopsis

Constructors

AutoTerminationPolicyProperty()

An auto-termination policy for an Amazon EMR cluster.

Properties

IdleTimeout

Specifies the amount of idle time in seconds after which the cluster automatically terminates.

Constructors

AutoTerminationPolicyProperty()

An auto-termination policy for an Amazon EMR cluster.

public AutoTerminationPolicyProperty()
Remarks

An auto-termination policy defines the amount of idle time in seconds after which a cluster automatically terminates. For alternative cluster termination options, see Control cluster termination .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-autoterminationpolicy.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EMR;

             var autoTerminationPolicyProperty = new AutoTerminationPolicyProperty {
                 IdleTimeout = 123
             };

Properties

IdleTimeout

Specifies the amount of idle time in seconds after which the cluster automatically terminates.

public double? IdleTimeout { get; set; }
Property Value

double?

Remarks

You can specify a minimum of 60 seconds and a maximum of 604800 seconds (seven days).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-autoterminationpolicy.html#cfn-emr-cluster-autoterminationpolicy-idletimeout

Implements

CfnCluster.IAutoTerminationPolicyProperty
Back to top Generated by DocFX