Show / Hide Table of Contents

Interface TaskStatusChange.ITaskStatusChangeProps

(experimental) Props type for aws.omics@TaskStatusChange event.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Omics.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface TaskStatusChange.ITaskStatusChangeProps
Syntax (vb)
Public Interface TaskStatusChange.ITaskStatusChangeProps
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.Omics.Events;

             var taskStatusChangeProps = new TaskStatusChangeProps {
                 Arn = new [] { "arn" },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 OmicsVersion = new [] { "omicsVersion" },
                 Status = new [] { "status" }
             };

Synopsis

Properties

Arn

(experimental) arn property.

EventMetadata

(experimental) EventBridge event metadata.

OmicsVersion

(experimental) omicsVersion property.

Status

(experimental) status property.

Properties

Arn

(experimental) arn property.

string[]? Arn { get; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of arn 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.

IAWSEventMetadataProps? EventMetadata { get; }
Property Value

IAWSEventMetadataProps

Remarks

Default: - -

Stability: Experimental

OmicsVersion

(experimental) omicsVersion property.

string[]? OmicsVersion { get; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of omicsVersion 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

Status

(experimental) status property.

string[]? Status { get; }
Property Value

string[]

Remarks

Specify an array of string values to match this event if the actual value of status 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

Back to top Generated by DocFX