Show / Hide Table of Contents

Interface SequenceStoreEvents.ReadSetImportJobStatusChange.IReadSetImportJobStatusChangeProps

(experimental) Props type for SequenceStore aws.omics@ReadSetImportJobStatusChange event.

Namespace: Amazon.CDK.Mixins.Preview.AWS.Omics.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface SequenceStoreEvents.ReadSetImportJobStatusChange.IReadSetImportJobStatusChangeProps
Syntax (vb)
Public Interface SequenceStoreEvents.ReadSetImportJobStatusChange.IReadSetImportJobStatusChangeProps
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 readSetImportJobStatusChangeProps = new ReadSetImportJobStatusChangeProps {
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 Id = new [] { "id" },
                 OmicsVersion = new [] { "omicsVersion" },
                 SequenceStoreId = new [] { "sequenceStoreId" },
                 Status = new [] { "status" },
                 StatusMessage = new [] { "statusMessage" }
             };

Synopsis

Properties

EventMetadata

(experimental) EventBridge event metadata.

Id

(experimental) id property.

OmicsVersion

(experimental) omicsVersion property.

SequenceStoreId

(experimental) sequenceStoreId property.

Status

(experimental) status property.

StatusMessage

(experimental) statusMessage property.

Properties

EventMetadata

(experimental) EventBridge event metadata.

IAWSEventMetadataProps? EventMetadata { get; }
Property Value

IAWSEventMetadataProps

Remarks

Default: - -

Stability: Experimental

Id

(experimental) id property.

string[]? Id { get; }
Property Value

string[]

Remarks

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

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

SequenceStoreId

(experimental) sequenceStoreId property.

string[]? SequenceStoreId { get; }
Property Value

string[]

Remarks

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

Default: - Filter with the SequenceStore reference

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

StatusMessage

(experimental) statusMessage property.

string[]? StatusMessage { get; }
Property Value

string[]

Remarks

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