interface ManagedBlockchainProposalStatusChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ManagedBlockchain.Events.ManagedBlockchainProposalStatusChange.ManagedBlockchainProposalStatusChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmanagedblockchain/events#ManagedBlockchainProposalStatusChange_ManagedBlockchainProposalStatusChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.managedblockchain.events.ManagedBlockchainProposalStatusChange.ManagedBlockchainProposalStatusChangeProps |
Python | aws_cdk.mixins_preview.aws_managedblockchain.events.ManagedBlockchainProposalStatusChange.ManagedBlockchainProposalStatusChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_managedblockchain ยป events ยป ManagedBlockchainProposalStatusChange ยป ManagedBlockchainProposalStatusChangeProps |
Props type for aws.managedblockchain@ManagedBlockchainProposalStatusChange 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 managedBlockchainProposalStatusChangeProps: managedblockchain_events.ManagedBlockchainProposalStatusChange.ManagedBlockchainProposalStatusChangeProps = {
description: ['description'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
expirationDate: ['expirationDate'],
message: ['message'],
networkId: ['networkId'],
proposalId: ['proposalId'],
proposedByMemberId: ['proposedByMemberId'],
proposedByMemberName: ['proposedByMemberName'],
status: ['status'],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string[] | description property. |
| event | AWSEvent | EventBridge event metadata. |
| expiration | string[] | expirationDate property. |
| message? | string[] | message property. |
| network | string[] | networkId property. |
| proposal | string[] | proposalId property. |
| proposed | string[] | proposedByMemberId property. |
| proposed | string[] | proposedByMemberName property. |
| status? | string[] | status property. |
description?
Type:
string[]
(optional, default: Do not filter on this field)
description property.
Specify an array of string values to match this event if the actual value of description 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.
expirationDate?
Type:
string[]
(optional, default: Do not filter on this field)
expirationDate property.
Specify an array of string values to match this event if the actual value of expirationDate 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.
proposalId?
Type:
string[]
(optional, default: Do not filter on this field)
proposalId property.
Specify an array of string values to match this event if the actual value of proposalId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
proposedByMemberId?
Type:
string[]
(optional, default: Do not filter on this field)
proposedByMemberId property.
Specify an array of string values to match this event if the actual value of proposedByMemberId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
proposedByMemberName?
Type:
string[]
(optional, default: Do not filter on this field)
proposedByMemberName property.
Specify an array of string values to match this event if the actual value of proposedByMemberName 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