interface CisTargetsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnCisScanConfigurationPropsMixin.CisTargetsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnCisScanConfigurationPropsMixin_CisTargetsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnCisScanConfigurationPropsMixin.CisTargetsProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnCisScanConfigurationPropsMixin.CisTargetsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » CfnCisScanConfigurationPropsMixin » 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/cfn-property-mixins';
const cisTargetsProperty: inspectorv2.CfnCisScanConfigurationPropsMixin.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[]
(optional)
The CIS target account ids.
targetResourceTags?
Type:
IResolvable | { [string]: string[] }
(optional)
The CIS target resource tags.

.NET
Go
Java
Python
TypeScript