Interface CfnConnector.ScopeConfigurationProperty

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

@Stability(Stable) public static interface CfnConnector.ScopeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Defines the scope of Azure resources to monitor for a specific resource type.

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.*;
 ScopeConfigurationProperty scopeConfigurationProperty = ScopeConfigurationProperty.builder()
         .scopeType("scopeType")
         // the properties below are optional
         .scopeValues(List.of("scopeValues"))
         .state("state")
         .stateReason("stateReason")
         .build();
 

See Also: