Show / Hide Table of Contents

Interface DatastoreEvents.DataStoreCreating.IDataStoreCreatingProps

(experimental) Props type for Datastore aws.healthimaging@DataStoreCreating event.

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

             var dataStoreCreatingProps = new DataStoreCreatingProps {
                 DatastoreId = new [] { "datastoreId" },
                 DatastoreName = new [] { "datastoreName" },
                 DatastoreStatus = new [] { "datastoreStatus" },
                 EventMetadata = new AWSEventMetadataProps {
                     Region = new [] { "region" },
                     Resources = new [] { "resources" },
                     Version = new [] { "version" }
                 },
                 ImagingVersion = new [] { "imagingVersion" }
             };

Synopsis

Properties

DatastoreId

(experimental) datastoreId property.

DatastoreName

(experimental) datastoreName property.

DatastoreStatus

(experimental) datastoreStatus property.

EventMetadata

(experimental) EventBridge event metadata.

ImagingVersion

(experimental) imagingVersion property.

Properties

DatastoreId

(experimental) datastoreId property.

string[]? DatastoreId { get; }
Property Value

string[]

Remarks

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

Stability: Experimental

DatastoreName

(experimental) datastoreName property.

string[]? DatastoreName { get; }
Property Value

string[]

Remarks

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

DatastoreStatus

(experimental) datastoreStatus property.

string[]? DatastoreStatus { get; }
Property Value

string[]

Remarks

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

ImagingVersion

(experimental) imagingVersion property.

string[]? ImagingVersion { get; }
Property Value

string[]

Remarks

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