interface SecurityHubFindingsCustomActionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Events.SecurityHubFindingsCustomAction.SecurityHubFindingsCustomActionProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/events#SecurityHubFindingsCustomAction_SecurityHubFindingsCustomActionProps |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.events.SecurityHubFindingsCustomAction.SecurityHubFindingsCustomActionProps |
Python | aws_cdk.mixins_preview.aws_securityhub.events.SecurityHubFindingsCustomAction.SecurityHubFindingsCustomActionProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_securityhub ยป events ยป SecurityHubFindingsCustomAction ยป SecurityHubFindingsCustomActionProps |
Props type for aws.securityhub@SecurityHubFindingsCustomAction event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as securityhub_events } from '@aws-cdk/mixins-preview/aws-securityhub';
const securityHubFindingsCustomActionProps: securityhub_events.SecurityHubFindingsCustomAction.SecurityHubFindingsCustomActionProps = {
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
findings: ['findings'],
};
Properties
| Name | Type | Description |
|---|---|---|
| event | AWSEvent | EventBridge event metadata. |
| findings? | string[] | findings property. |
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
findings?
Type:
string[]
(optional, default: Do not filter on this field)
findings property.
Specify an array of string values to match this event if the actual value of findings 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