Interface CfnConnectorV2.AzureProviderConfigurationProperty

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

@Stability(Stable) public static interface CfnConnectorV2.AzureProviderConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration settings required to establish an integration between AWS Security Hub and Azure.

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

See Also: