interface NetworkManagerPolicyUpdateProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Events.CoreNetworkEvents.NetworkManagerPolicyUpdate.NetworkManagerPolicyUpdateProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/events#CoreNetworkEvents_NetworkManagerPolicyUpdate_NetworkManagerPolicyUpdateProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.events.CoreNetworkEvents.NetworkManagerPolicyUpdate.NetworkManagerPolicyUpdateProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.events.CoreNetworkEvents.NetworkManagerPolicyUpdate.NetworkManagerPolicyUpdateProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_networkmanager ยป events ยป CoreNetworkEvents ยป NetworkManagerPolicyUpdate ยป NetworkManagerPolicyUpdateProps |
Props type for CoreNetwork aws.networkmanager@NetworkManagerPolicyUpdate event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as networkmanager_events } from '@aws-cdk/mixins-preview/aws-networkmanager';
const networkManagerPolicyUpdateProps: networkmanager_events.CoreNetworkEvents.NetworkManagerPolicyUpdate.NetworkManagerPolicyUpdateProps = {
changeDescription: ['changeDescription'],
changeType: ['changeType'],
coreNetworkArn: ['coreNetworkArn'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
policyVersionId: ['policyVersionId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| change | string[] | changeDescription property. |
| change | string[] | changeType property. |
| core | string[] | coreNetworkArn property. |
| event | AWSEvent | EventBridge event metadata. |
| policy | string[] | policyVersionId property. |
changeDescription?
Type:
string[]
(optional, default: Do not filter on this field)
changeDescription property.
Specify an array of string values to match this event if the actual value of changeDescription is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
changeType?
Type:
string[]
(optional, default: Do not filter on this field)
changeType property.
Specify an array of string values to match this event if the actual value of changeType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
coreNetworkArn?
Type:
string[]
(optional, default: Filter with the CoreNetwork reference)
coreNetworkArn property.
Specify an array of string values to match this event if the actual value of coreNetworkArn 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.
policyVersionId?
Type:
string[]
(optional, default: Do not filter on this field)
policyVersionId property.
Specify an array of string values to match this event if the actual value of policyVersionId 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