interface QLDBLedgerStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QLDB.Events.QLDBLedgerStateChange.QLDBLedgerStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqldb/events#QLDBLedgerStateChange_QLDBLedgerStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.qldb.events.QLDBLedgerStateChange.QLDBLedgerStateChangeProps |
Python | aws_cdk.mixins_preview.aws_qldb.events.QLDBLedgerStateChange.QLDBLedgerStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_qldb ยป events ยป QLDBLedgerStateChange ยป QLDBLedgerStateChangeProps |
Props type for aws.qldb@QLDBLedgerStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as qldb_events } from '@aws-cdk/mixins-preview/aws-qldb';
const qLDBLedgerStateChangeProps: qldb_events.QLDBLedgerStateChange.QLDBLedgerStateChangeProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
ledgerName: ['ledgerName'],
state: ['state'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| ledger | string[] | ledgerName property. |
| state? | string[] | state property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
ledgerName?
Type:
string[]
(optional, default: Do not filter on this field)
ledgerName property.
Specify an array of string values to match this event if the actual value of ledgerName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
string[]
(optional, default: Do not filter on this field)
state property.
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.

.NET
Go
Java
Python
TypeScript