SecurityHubFindingsCustomAction
- class aws_cdk.mixins_preview.aws_securityhub.events.SecurityHubFindingsCustomAction
Bases:
object(experimental) EventBridge event pattern for aws.securityhub@SecurityHubFindingsCustomAction.
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_securityhub import events as securityhub_events security_hub_findings_custom_action = securityhub_events.SecurityHubFindingsCustomAction()
- Stability:
experimental
Static Methods
- classmethod security_hub_findings_custom_action_pattern(*, event_metadata=None, findings=None)
(experimental) EventBridge event pattern for Security Hub Findings - Custom Action.
- Parameters:
event_metadata (
Union[AWSEventMetadataProps,Dict[str,Any],None]) – (experimental) EventBridge event metadata. Default: - -findings (
Optional[Sequence[str]]) – (experimental) 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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this field
- Stability:
experimental
- Return type:
SecurityHubFindingsCustomActionProps
- class SecurityHubFindingsCustomAction.SecurityHubFindingsCustomActionProps(*, event_metadata=None, findings=None)
Bases:
object(experimental) Props type for aws.securityhub@SecurityHubFindingsCustomAction event.
- Parameters:
event_metadata (
Union[AWSEventMetadataProps,Dict[str,Any],None]) – (experimental) EventBridge event metadata. Default: - -findings (
Optional[Sequence[str]]) – (experimental) 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 theaws_events.Matchfor more advanced matching options. Default: - Do not filter on this field
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import AWSEventMetadataProps # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_securityhub import events as securityhub_events security_hub_findings_custom_action_props = securityhub_events.SecurityHubFindingsCustomAction.SecurityHubFindingsCustomActionProps( event_metadata=AWSEventMetadataProps( region=["region"], resources=["resources"], version=["version"] ), findings=["findings"] )
Attributes
- event_metadata
(experimental) EventBridge event metadata.
- Default:
- Stability:
experimental
- findings
(experimental) 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.Matchfor more advanced matching options.- Default:
Do not filter on this field
- Stability:
experimental