Interface CfnConnectorPropsMixin.AzureProviderConfigurationProperty

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

@Stability(Stable) public static interface CfnConnectorPropsMixin.AzureProviderConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration for connecting to an Azure environment.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.securityhub.*;
 AzureProviderConfigurationProperty azureProviderConfigurationProperty = AzureProviderConfigurationProperty.builder()
         .awsConfigConnectorArn("awsConfigConnectorArn")
         .azureRegions(List.of("azureRegions"))
         .scopeConfiguration(AzureScopeConfigurationProperty.builder()
                 .scopeType("scopeType")
                 .scopeValues(List.of("scopeValues"))
                 .build())
         .build();
 

See Also: