interface ManagedBlockchainInvitationStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Events.ManagedBlockchainInvitationStatusChange.ManagedBlockchainInvitationStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmanagedblockchain/events#ManagedBlockchainInvitationStatusChange_ManagedBlockchainInvitationStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.managedblockchain.events.ManagedBlockchainInvitationStatusChange.ManagedBlockchainInvitationStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_managedblockchain.events.ManagedBlockchainInvitationStatusChange.ManagedBlockchainInvitationStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_managedblockchain ยป events ยป ManagedBlockchainInvitationStatusChange ยป ManagedBlockchainInvitationStatusChangeProps |
Props type for aws.managedblockchain@ManagedBlockchainInvitationStatusChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as managedblockchain_events } from '@aws-cdk/mixins-preview/aws-managedblockchain';
const managedBlockchainInvitationStatusChangeProps: managedblockchain_events.ManagedBlockchainInvitationStatusChange.ManagedBlockchainInvitationStatusChangeProps = {
acceptedAt: ['acceptedAt'],
createdAt: ['createdAt'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
expiresAt: ['expiresAt'],
invitationId: ['invitationId'],
message: ['message'],
networkId: ['networkId'],
rejectedAt: ['rejectedAt'],
status: ['status'],
};
Properties
| Name | Type | Description |
|---|---|---|
| accepted | string[] | acceptedAt property. |
| created | string[] | createdAt property. |
| event | AWSEvent | EventBridge event metadata. |
| expires | string[] | expiresAt property. |
| invitation | string[] | invitationId property. |
| message? | string[] | message property. |
| network | string[] | networkId property. |
| rejected | string[] | rejectedAt property. |
| status? | string[] | status property. |
acceptedAt?
Type:
string[]
(optional, default: Do not filter on this field)
acceptedAt property.
Specify an array of string values to match this event if the actual value of acceptedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
createdAt?
Type:
string[]
(optional, default: Do not filter on this field)
createdAt property.
Specify an array of string values to match this event if the actual value of createdAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
expiresAt?
Type:
string[]
(optional, default: Do not filter on this field)
expiresAt property.
Specify an array of string values to match this event if the actual value of expiresAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
invitationId?
Type:
string[]
(optional, default: Do not filter on this field)
invitationId property.
Specify an array of string values to match this event if the actual value of invitationId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
message?
Type:
string[]
(optional, default: Do not filter on this field)
message property.
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.
networkId?
Type:
string[]
(optional, default: Do not filter on this field)
networkId property.
Specify an array of string values to match this event if the actual value of networkId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
rejectedAt?
Type:
string[]
(optional, default: Do not filter on this field)
rejectedAt property.
Specify an array of string values to match this event if the actual value of rejectedAt is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
status property.
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.

.NET
Go
Java
Python
TypeScript