CfnFilter
- class aws_cdk.aws_inspectorv2.CfnFilter(scope, id, *, filter_action, filter_criteria, name, description=None)
Bases:
CfnResource
Details about a filter.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspectorv2-filter.html
- CloudformationResource:
AWS::InspectorV2::Filter
- 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 import aws_inspectorv2 as inspectorv2 cfn_filter = inspectorv2.CfnFilter(self, "MyCfnFilter", filter_action="filterAction", filter_criteria=inspectorv2.CfnFilter.FilterCriteriaProperty( aws_account_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], component_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], component_type=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ec2_instance_image_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ec2_instance_subnet_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ec2_instance_vpc_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_architecture=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_hash=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_pushed_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], ecr_image_registry=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_repository_name=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_tags=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], finding_arn=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], finding_status=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], finding_type=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], first_observed_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], inspector_score=[inspectorv2.CfnFilter.NumberFilterProperty( lower_inclusive=123, upper_inclusive=123 )], last_observed_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], network_protocol=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], port_range=[inspectorv2.CfnFilter.PortRangeFilterProperty( begin_inclusive=123, end_inclusive=123 )], related_vulnerabilities=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], resource_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], resource_tags=[inspectorv2.CfnFilter.MapFilterProperty( comparison="comparison", # the properties below are optional key="key", value="value" )], resource_type=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], severity=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], title=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], updated_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], vendor_severity=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], vulnerability_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], vulnerability_source=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], vulnerable_packages=[inspectorv2.CfnFilter.PackageFilterProperty( architecture=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), epoch=inspectorv2.CfnFilter.NumberFilterProperty( lower_inclusive=123, upper_inclusive=123 ), name=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), release=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), source_layer_hash=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), version=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ) )] ), name="name", # the properties below are optional description="description" )
- Parameters:
scope (
Construct
) – Scope in which this resource is defined.id (
str
) – Construct identifier for this resource (unique in its scope).filter_action (
str
) – The action that is to be applied to the findings that match the filter.filter_criteria (
Union
[IResolvable
,FilterCriteriaProperty
,Dict
[str
,Any
]]) – Details on the filter criteria associated with this filter.name (
str
) – The name of the filter.description (
Optional
[str
]) – A description of the filter.
Methods
- add_deletion_override(path)
Syntactic sugar for
addOverride(path, undefined)
.- Parameters:
path (
str
) – The path of the value to delete.- Return type:
None
- add_dependency(target)
Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope.
- Parameters:
target (
CfnResource
) –- Return type:
None
- add_depends_on(target)
(deprecated) Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
- Parameters:
target (
CfnResource
) –- Deprecated:
use addDependency
- Stability:
deprecated
- Return type:
None
- add_metadata(key, value)
Add a value to the CloudFormation Resource Metadata.
- Parameters:
key (
str
) –value (
Any
) –
- See:
- Return type:
None
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- add_override(path, value)
Adds an override to the synthesized CloudFormation resource.
To add a property override, either use
addPropertyOverride
or prefixpath
with “Properties.” (i.e.Properties.TopicName
).If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path.
To include a literal
.
in the property name, prefix with a\
. In most programming languages you will need to write this as"\\."
because the\
itself will need to be escaped.For example:
cfn_resource.add_override("Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes", ["myattribute"]) cfn_resource.add_override("Properties.GlobalSecondaryIndexes.1.ProjectionType", "INCLUDE")
would add the overrides Example:
"Properties": { "GlobalSecondaryIndexes": [ { "Projection": { "NonKeyAttributes": [ "myattribute" ] ... } ... }, { "ProjectionType": "INCLUDE" ... }, ] ... }
The
value
argument toaddOverride
will not be processed or translated in any way. Pass raw JSON values in here with the correct capitalization for CloudFormation. If you pass CDK classes or structs, they will be rendered with lowercased key names, and CloudFormation will reject the template.- Parameters:
path (
str
) –The path of the property, you can use dot notation to override values in complex types. Any intermediate keys will be created as needed.
value (
Any
) –The value. Could be primitive or complex.
- Return type:
None
- add_property_deletion_override(property_path)
Adds an override that deletes the value of a property from the resource definition.
- Parameters:
property_path (
str
) – The path to the property.- Return type:
None
- add_property_override(property_path, value)
Adds an override to a resource property.
Syntactic sugar for
addOverride("Properties.<...>", value)
.- Parameters:
property_path (
str
) – The path of the property.value (
Any
) – The value.
- Return type:
None
- apply_removal_policy(policy=None, *, apply_to_update_replace_policy=None, default=None)
Sets the deletion policy of the resource based on the removal policy specified.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
). In some cases, a snapshot can be taken of the resource prior to deletion (RemovalPolicy.SNAPSHOT
). A list of resources that support this policy can be found in the following link:- Parameters:
policy (
Optional
[RemovalPolicy
]) –apply_to_update_replace_policy (
Optional
[bool
]) – Apply the same deletion policy to the resource’s “UpdateReplacePolicy”. Default: truedefault (
Optional
[RemovalPolicy
]) – The default policy to apply in case the removal policy is not defined. Default: - Default value is resource specific. To determine the default value for a resource, please consult that specific resource’s documentation.
- See:
- Return type:
None
- get_att(attribute_name, type_hint=None)
Returns a token for an runtime attribute of this resource.
Ideally, use generated attribute accessors (e.g.
resource.arn
), but this can be used for future compatibility in case there is no generated attribute.- Parameters:
attribute_name (
str
) – The name of the attribute.type_hint (
Optional
[ResolutionTypeHint
]) –
- Return type:
- get_metadata(key)
Retrieve a value value from the CloudFormation Resource Metadata.
- Parameters:
key (
str
) –- See:
- Return type:
Any
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly.
- inspect(inspector)
Examines the CloudFormation resource and discloses attributes.
- Parameters:
inspector (
TreeInspector
) – tree inspector to collect and process attributes.- Return type:
None
- obtain_dependencies()
Retrieves an array of resources this resource depends on.
This assembles dependencies on resources across stacks (including nested stacks) automatically.
- Return type:
List
[Union
[Stack
,CfnResource
]]
- obtain_resource_dependencies()
Get a shallow copy of dependencies between this resource and other resources in the same stack.
- Return type:
List
[CfnResource
]
- override_logical_id(new_logical_id)
Overrides the auto-generated logical ID with a specific ID.
- Parameters:
new_logical_id (
str
) – The new logical ID to use for this stack element.- Return type:
None
- remove_dependency(target)
Indicates that this resource no longer depends on another resource.
This can be used for resources across stacks (including nested stacks) and the dependency will automatically be removed from the relevant scope.
- Parameters:
target (
CfnResource
) –- Return type:
None
- replace_dependency(target, new_target)
Replaces one dependency with another.
- Parameters:
target (
CfnResource
) – The dependency to replace.new_target (
CfnResource
) – The new dependency to add.
- Return type:
None
- to_string()
Returns a string representation of this construct.
- Return type:
str
- Returns:
a string representation of this resource
Attributes
- CFN_RESOURCE_TYPE_NAME = 'AWS::InspectorV2::Filter'
- attr_arn
The Amazon Resource Number (ARN) associated with this filter.
- CloudformationAttribute:
Arn
- cfn_options
Options for this resource, such as condition, update policy etc.
- cfn_resource_type
AWS resource type.
- creation_stack
return:
the stack trace of the point where this Resource was created from, sourced from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most node +internal+ entries filtered.
- description
A description of the filter.
- filter_action
The action that is to be applied to the findings that match the filter.
- filter_criteria
Details on the filter criteria associated with this filter.
- logical_id
The logical ID for this CloudFormation stack element.
The logical ID of the element is calculated from the path of the resource node in the construct tree.
To override this value, use
overrideLogicalId(newLogicalId)
.- Returns:
the logical ID as a stringified token. This value will only get resolved during synthesis.
- name
The name of the filter.
- node
The tree node.
- ref
Return a string that will be resolved to a CloudFormation
{ Ref }
for this element.If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through
Lazy.any({ produce: resource.ref })
.
- stack
The stack in which this element is defined.
CfnElements must be defined within a stack scope (directly or indirectly).
Static Methods
- classmethod is_cfn_element(x)
Returns
true
if a construct is a stack element (i.e. part of the synthesized cloudformation template).Uses duck-typing instead of
instanceof
to allow stack elements from different versions of this library to be included in the same stack.- Parameters:
x (
Any
) –- Return type:
bool
- Returns:
The construct as a stack element or undefined if it is not a stack element.
- classmethod is_cfn_resource(x)
Check whether the given object is a CfnResource.
- Parameters:
x (
Any
) –- Return type:
bool
- classmethod is_construct(x)
Checks if
x
is a construct.Use this method instead of
instanceof
to properly detectConstruct
instances, even when the construct library is symlinked.Explanation: in JavaScript, multiple copies of the
constructs
library on disk are seen as independent, completely different libraries. As a consequence, the classConstruct
in each copy of theconstructs
library is seen as a different class, and an instance of one class will not test asinstanceof
the other class.npm install
will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of theconstructs
library can be accidentally installed, andinstanceof
will behave unpredictably. It is safest to avoid usinginstanceof
, and using this type-testing method instead.- Parameters:
x (
Any
) – Any object.- Return type:
bool
- Returns:
true if
x
is an object created from a class which extendsConstruct
.
DateFilterProperty
- class CfnFilter.DateFilterProperty(*, end_inclusive=None, start_inclusive=None)
Bases:
object
Contains details on the time range used to filter findings.
- Parameters:
end_inclusive (
Union
[int
,float
,None
]) – A timestamp representing the end of the time period filtered on.start_inclusive (
Union
[int
,float
,None
]) – A timestamp representing the start of the time period filtered on.
- See:
- 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 import aws_inspectorv2 as inspectorv2 date_filter_property = inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )
Attributes
- end_inclusive
A timestamp representing the end of the time period filtered on.
- start_inclusive
A timestamp representing the start of the time period filtered on.
FilterCriteriaProperty
- class CfnFilter.FilterCriteriaProperty(*, aws_account_id=None, component_id=None, component_type=None, ec2_instance_image_id=None, ec2_instance_subnet_id=None, ec2_instance_vpc_id=None, ecr_image_architecture=None, ecr_image_hash=None, ecr_image_pushed_at=None, ecr_image_registry=None, ecr_image_repository_name=None, ecr_image_tags=None, finding_arn=None, finding_status=None, finding_type=None, first_observed_at=None, inspector_score=None, last_observed_at=None, network_protocol=None, port_range=None, related_vulnerabilities=None, resource_id=None, resource_tags=None, resource_type=None, severity=None, title=None, updated_at=None, vendor_severity=None, vulnerability_id=None, vulnerability_source=None, vulnerable_packages=None)
Bases:
object
Details on the criteria used to define the filter.
- Parameters:
aws_account_id (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the AWS account IDs used to filter findings.component_id (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the component IDs used to filter findings.component_type (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the component types used to filter findings.ec2_instance_image_id (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the Amazon EC2 instance image IDs used to filter findings.ec2_instance_subnet_id (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the Amazon EC2 instance subnet IDs used to filter findings.ec2_instance_vpc_id (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the Amazon EC2 instance VPC IDs used to filter findings.ecr_image_architecture (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the Amazon ECR image architecture types used to filter findings.ecr_image_hash (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details of the Amazon ECR image hashes used to filter findings.ecr_image_pushed_at (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,DateFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the Amazon ECR image push date and time used to filter findings.ecr_image_registry (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the Amazon ECR registry used to filter findings.ecr_image_repository_name (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the name of the Amazon ECR repository used to filter findings.ecr_image_tags (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – The tags attached to the Amazon ECR container image.finding_arn (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the finding ARNs used to filter findings.finding_status (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the finding status types used to filter findings.finding_type (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the finding types used to filter findings.first_observed_at (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,DateFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the date and time a finding was first seen used to filter findings.inspector_score (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,NumberFilterProperty
,Dict
[str
,Any
]]],None
]) – The Amazon Inspector score to filter on.last_observed_at (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,DateFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the date and time a finding was last seen used to filter findings.network_protocol (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on network protocol used to filter findings.port_range (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,PortRangeFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the port ranges used to filter findings.related_vulnerabilities (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the related vulnerabilities used to filter findings.resource_id (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the resource IDs used to filter findings.resource_tags (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,MapFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the resource tags used to filter findings.resource_type (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the resource types used to filter findings.severity (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the severity used to filter findings.title (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the finding title used to filter findings.updated_at (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,DateFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the date and time a finding was last updated at used to filter findings.vendor_severity (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the vendor severity used to filter findings.vulnerability_id (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the vulnerability ID used to filter findings.vulnerability_source (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the vulnerability score to filter findings by.vulnerable_packages (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,PackageFilterProperty
,Dict
[str
,Any
]]],None
]) – Details on the vulnerable packages used to filter findings.
- See:
- 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 import aws_inspectorv2 as inspectorv2 filter_criteria_property = inspectorv2.CfnFilter.FilterCriteriaProperty( aws_account_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], component_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], component_type=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ec2_instance_image_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ec2_instance_subnet_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ec2_instance_vpc_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_architecture=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_hash=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_pushed_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], ecr_image_registry=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_repository_name=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], ecr_image_tags=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], finding_arn=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], finding_status=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], finding_type=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], first_observed_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], inspector_score=[inspectorv2.CfnFilter.NumberFilterProperty( lower_inclusive=123, upper_inclusive=123 )], last_observed_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], network_protocol=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], port_range=[inspectorv2.CfnFilter.PortRangeFilterProperty( begin_inclusive=123, end_inclusive=123 )], related_vulnerabilities=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], resource_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], resource_tags=[inspectorv2.CfnFilter.MapFilterProperty( comparison="comparison", # the properties below are optional key="key", value="value" )], resource_type=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], severity=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], title=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], updated_at=[inspectorv2.CfnFilter.DateFilterProperty( end_inclusive=123, start_inclusive=123 )], vendor_severity=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], vulnerability_id=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], vulnerability_source=[inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )], vulnerable_packages=[inspectorv2.CfnFilter.PackageFilterProperty( architecture=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), epoch=inspectorv2.CfnFilter.NumberFilterProperty( lower_inclusive=123, upper_inclusive=123 ), name=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), release=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), source_layer_hash=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), version=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ) )] )
Attributes
- aws_account_id
Details of the AWS account IDs used to filter findings.
- component_id
Details of the component IDs used to filter findings.
- component_type
Details of the component types used to filter findings.
- ec2_instance_image_id
Details of the Amazon EC2 instance image IDs used to filter findings.
- ec2_instance_subnet_id
Details of the Amazon EC2 instance subnet IDs used to filter findings.
- ec2_instance_vpc_id
Details of the Amazon EC2 instance VPC IDs used to filter findings.
- ecr_image_architecture
Details of the Amazon ECR image architecture types used to filter findings.
- ecr_image_hash
Details of the Amazon ECR image hashes used to filter findings.
- ecr_image_pushed_at
Details on the Amazon ECR image push date and time used to filter findings.
- ecr_image_registry
Details on the Amazon ECR registry used to filter findings.
- ecr_image_repository_name
Details on the name of the Amazon ECR repository used to filter findings.
- ecr_image_tags
The tags attached to the Amazon ECR container image.
- finding_arn
Details on the finding ARNs used to filter findings.
- finding_status
Details on the finding status types used to filter findings.
- finding_type
Details on the finding types used to filter findings.
- first_observed_at
Details on the date and time a finding was first seen used to filter findings.
- inspector_score
The Amazon Inspector score to filter on.
- last_observed_at
Details on the date and time a finding was last seen used to filter findings.
- network_protocol
Details on network protocol used to filter findings.
- port_range
Details on the port ranges used to filter findings.
Details on the related vulnerabilities used to filter findings.
- resource_id
Details on the resource IDs used to filter findings.
- resource_tags
Details on the resource tags used to filter findings.
- resource_type
Details on the resource types used to filter findings.
- severity
Details on the severity used to filter findings.
- title
Details on the finding title used to filter findings.
- updated_at
Details on the date and time a finding was last updated at used to filter findings.
- vendor_severity
Details on the vendor severity used to filter findings.
- vulnerability_id
Details on the vulnerability ID used to filter findings.
- vulnerability_source
Details on the vulnerability score to filter findings by.
- vulnerable_packages
Details on the vulnerable packages used to filter findings.
MapFilterProperty
- class CfnFilter.MapFilterProperty(*, comparison, key=None, value=None)
Bases:
object
An object that describes details of a map filter.
- Parameters:
comparison (
str
) – The operator to use when comparing values in the filter.key (
Optional
[str
]) – The tag key used in the filter.value (
Optional
[str
]) – The tag value used in the filter.
- See:
- 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 import aws_inspectorv2 as inspectorv2 map_filter_property = inspectorv2.CfnFilter.MapFilterProperty( comparison="comparison", # the properties below are optional key="key", value="value" )
Attributes
- comparison
The operator to use when comparing values in the filter.
- key
The tag key used in the filter.
- value
The tag value used in the filter.
NumberFilterProperty
- class CfnFilter.NumberFilterProperty(*, lower_inclusive=None, upper_inclusive=None)
Bases:
object
An object that describes the details of a number filter.
- Parameters:
lower_inclusive (
Union
[int
,float
,None
]) – The lowest number to be included in the filter.upper_inclusive (
Union
[int
,float
,None
]) – The highest number to be included in the filter.
- See:
- 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 import aws_inspectorv2 as inspectorv2 number_filter_property = inspectorv2.CfnFilter.NumberFilterProperty( lower_inclusive=123, upper_inclusive=123 )
Attributes
- lower_inclusive
The lowest number to be included in the filter.
- upper_inclusive
The highest number to be included in the filter.
PackageFilterProperty
- class CfnFilter.PackageFilterProperty(*, architecture=None, epoch=None, name=None, release=None, source_layer_hash=None, version=None)
Bases:
object
Contains information on the details of a package filter.
- Parameters:
architecture (
Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
],None
]) – An object that contains details on the package architecture type to filter on.epoch (
Union
[IResolvable
,NumberFilterProperty
,Dict
[str
,Any
],None
]) – An object that contains details on the package epoch to filter on.name (
Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
],None
]) – An object that contains details on the name of the package to filter on.release (
Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
],None
]) – An object that contains details on the package release to filter on.source_layer_hash (
Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
],None
]) – An object that contains details on the source layer hash to filter on.version (
Union
[IResolvable
,StringFilterProperty
,Dict
[str
,Any
],None
]) – The package version to filter on.
- See:
- 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 import aws_inspectorv2 as inspectorv2 package_filter_property = inspectorv2.CfnFilter.PackageFilterProperty( architecture=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), epoch=inspectorv2.CfnFilter.NumberFilterProperty( lower_inclusive=123, upper_inclusive=123 ), name=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), release=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), source_layer_hash=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ), version=inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" ) )
Attributes
- architecture
An object that contains details on the package architecture type to filter on.
- epoch
An object that contains details on the package epoch to filter on.
- name
An object that contains details on the name of the package to filter on.
- release
An object that contains details on the package release to filter on.
- source_layer_hash
An object that contains details on the source layer hash to filter on.
- version
The package version to filter on.
PortRangeFilterProperty
- class CfnFilter.PortRangeFilterProperty(*, begin_inclusive=None, end_inclusive=None)
Bases:
object
An object that describes the details of a port range filter.
- Parameters:
begin_inclusive (
Union
[int
,float
,None
]) – The port number the port range begins at.end_inclusive (
Union
[int
,float
,None
]) – The port number the port range ends at.
- See:
- 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 import aws_inspectorv2 as inspectorv2 port_range_filter_property = inspectorv2.CfnFilter.PortRangeFilterProperty( begin_inclusive=123, end_inclusive=123 )
Attributes
- begin_inclusive
The port number the port range begins at.
- end_inclusive
The port number the port range ends at.
StringFilterProperty
- class CfnFilter.StringFilterProperty(*, comparison, value)
Bases:
object
An object that describes the details of a string filter.
- Parameters:
comparison (
str
) – The operator to use when comparing values in the filter.value (
str
) – The value to filter on.
- See:
- 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 import aws_inspectorv2 as inspectorv2 string_filter_property = inspectorv2.CfnFilter.StringFilterProperty( comparison="comparison", value="value" )
Attributes
- comparison
The operator to use when comparing values in the filter.