Interface CfnCisScanConfiguration.CisTargetsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCisScanConfiguration.CisTargetsProperty.Jsii$Proxy
Enclosing class:
CfnCisScanConfiguration

@Stability(Stable) public static interface CfnCisScanConfiguration.CisTargetsProperty extends software.amazon.jsii.JsiiSerializable
The CIS targets.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.inspectorv2.*;
 CisTargetsProperty cisTargetsProperty = CisTargetsProperty.builder()
         .accountIds(List.of("accountIds"))
         .targetResourceTags(Map.of(
                 "targetResourceTagsKey", List.of("targetResourceTags")))
         .build();
 

See Also: