Interface CfnConnector.ProviderProperty

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

@Stability(Stable) public static interface CfnConnector.ProviderProperty extends software.amazon.jsii.JsiiSerializable
The CSPM provider configuration for the connector.

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

See Also: