Show / Hide Table of Contents

Class EMRClusterStateChange.EMRClusterStateChangeProps

(experimental) Props type for aws.emr@EMRClusterStateChange event.

Inheritance
object
EMRClusterStateChange.EMRClusterStateChangeProps
Implements
EMRClusterStateChange.IEMRClusterStateChangeProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.EMR.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class EMRClusterStateChange.EMRClusterStateChangeProps : EMRClusterStateChange.IEMRClusterStateChangeProps
Syntax (vb)
Public Class EMRClusterStateChange.EMRClusterStateChangeProps Implements EMRClusterStateChange.IEMRClusterStateChangeProps
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.EMR.Events;

             var eMRClusterStateChangeProps = new EMRClusterStateChangeProps {
                 ClusterId = new [] { "clusterId" },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 Message = new [] { "message" },
                 Name = new [] { "name" },
                 Severity = new [] { "severity" },
                 State = new [] { "state" },
                 StateChangeReason = new [] { "stateChangeReason" }
             };

Synopsis

Constructors

EMRClusterStateChangeProps()

(experimental) Props type for aws.emr@EMRClusterStateChange event.

Properties

ClusterId

(experimental) clusterId property.

EventMetadata

(experimental) EventBridge event metadata.

Message

(experimental) message property.

Name

(experimental) name property.

Severity

(experimental) severity property.

State

(experimental) state property.

StateChangeReason

(experimental) stateChangeReason property.

Constructors

EMRClusterStateChangeProps()

(experimental) Props type for aws.emr@EMRClusterStateChange event.

public EMRClusterStateChangeProps()
Remarks

Stability: Experimental

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.Mixins.Preview.AWS.EMR.Events;

             var eMRClusterStateChangeProps = new EMRClusterStateChangeProps {
                 ClusterId = new [] { "clusterId" },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 Message = new [] { "message" },
                 Name = new [] { "name" },
                 Severity = new [] { "severity" },
                 State = new [] { "state" },
                 StateChangeReason = new [] { "stateChangeReason" }
             };

Properties

ClusterId

(experimental) clusterId property.

public string[]? ClusterId { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of clusterId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

EventMetadata

(experimental) EventBridge event metadata.

public IAWSEventMetadataProps? EventMetadata { get; set; }
Property Value

IAWSEventMetadataProps

Remarks

Default: - -

Stability: Experimental

Message

(experimental) message property.

public string[]? Message { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Name

(experimental) name property.

public string[]? Name { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Severity

(experimental) severity property.

public string[]? Severity { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of severity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

State

(experimental) state property.

public string[]? State { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

StateChangeReason

(experimental) stateChangeReason property.

public string[]? StateChangeReason { get; set; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of stateChangeReason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

Default: - Do not filter on this field

Stability: Experimental

Implements

EMRClusterStateChange.IEMRClusterStateChangeProps
Back to top Generated by DocFX