Interface CfnConnector.AzureScopeConfigurationProperty

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

@Stability(Stable) public static interface CfnConnector.AzureScopeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The scope configuration for an Azure connector, defining the tenant or subscription scope.

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.securityhub.*;
 AzureScopeConfigurationProperty azureScopeConfigurationProperty = AzureScopeConfigurationProperty.builder()
         .scopeType("scopeType")
         // the properties below are optional
         .scopeValues(List.of("scopeValues"))
         .build();
 

See Also: