interface ScanFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CloudFormation.CfnResourceScan.ScanFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscloudformation#CfnResourceScan_ScanFilterProperty |
Java | software.amazon.awscdk.services.cloudformation.CfnResourceScan.ScanFilterProperty |
Python | aws_cdk.aws_cloudformation.CfnResourceScan.ScanFilterProperty |
TypeScript | aws-cdk-lib » aws_cloudformation » 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 { aws_cloudformation as cloudformation } from 'aws-cdk-lib';
const scanFilterProperty: cloudformation.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