interface ScanFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CloudFormation.CfnResourceScanPropsMixin.ScanFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscloudformation#CfnResourceScanPropsMixin_ScanFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cloudformation.CfnResourceScanPropsMixin.ScanFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_cloudformation.CfnResourceScanPropsMixin.ScanFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cloudformation » CfnResourceScanPropsMixin » 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/cfn-property-mixins';
const scanFilterProperty: cloudformation.CfnResourceScanPropsMixin.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