interface CisTargetsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.InspectorV2.CfnCisScanConfiguration.CisTargetsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnCisScanConfiguration_CisTargetsProperty |
Java | software.amazon.awscdk.services.inspectorv2.CfnCisScanConfiguration.CisTargetsProperty |
Python | aws_cdk.aws_inspectorv2.CfnCisScanConfiguration.CisTargetsProperty |
TypeScript | aws-cdk-lib » aws_inspectorv2 » CfnCisScanConfiguration » CisTargetsProperty |
The CIS targets.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_inspectorv2 as inspectorv2 } from 'aws-cdk-lib';
const cisTargetsProperty: inspectorv2.CfnCisScanConfiguration.CisTargetsProperty = {
accountIds: ['accountIds'],
targetResourceTags: {
targetResourceTagsKey: ['targetResourceTags'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | The CIS target account ids. |
| target | IResolvable | { [string]: string[] } | The CIS target resource tags. |
accountIds
Type:
string[]
The CIS target account ids.
targetResourceTags
Type:
IResolvable | { [string]: string[] }
The CIS target resource tags.

.NET
Go
Java
Python
TypeScript