interface ScanFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnResourceScan.ScanFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2#CfnResourceScan_ScanFilterProperty |
Java | software.amazon.awscdk.CfnResourceScan.ScanFilterProperty |
Python | aws_cdk.CfnResourceScan.ScanFilterProperty |
TypeScript | aws-cdk-lib » CfnResourceScan » ScanFilterProperty |
A filter that is used to specify which resource types to scan.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const scanFilterProperty: cdk.CfnResourceScan.ScanFilterProperty = {
types: ['types'],
};
Properties
| Name | Type | Description |
|---|---|---|
| types? | string[] | An array of strings where each string represents an AWS resource type to scan. |
types?
Type:
string[]
(optional)
An array of strings where each string represents an AWS resource type to scan.

.NET
Go
Java
Python
TypeScript