SecurityHubFindingsImported

class aws_cdk.mixins_preview.aws_securityhub.events.SecurityHubFindingsImported

Bases: object

(experimental) EventBridge event pattern for aws.securityhub@SecurityHubFindingsImported.

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_imported = securityhub_events.SecurityHubFindingsImported()
Stability:

experimental

Static Methods

classmethod security_hub_findings_imported_pattern(*, event_metadata=None, findings=None)

(experimental) EventBridge event pattern for Security Hub Findings - Imported.

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 the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

Stability:

experimental

Return type:

EventPattern

SecurityHubFindingsImportedProps

class SecurityHubFindingsImported.SecurityHubFindingsImportedProps(*, event_metadata=None, findings=None)

Bases: object

(experimental) Props type for aws.securityhub@SecurityHubFindingsImported 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 the aws_events.Match for 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_imported_props = securityhub_events.SecurityHubFindingsImported.SecurityHubFindingsImportedProps(
    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.Match for more advanced matching options.

Default:
  • Do not filter on this field

Stability:

experimental