Interface CfnConnectorMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnectorMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:28.368Z") @Stability(Stable) public interface CfnConnectorMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnConnectorPropsMixin.

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.inspectorv2.*;
 CfnConnectorMixinProps cfnConnectorMixinProps = CfnConnectorMixinProps.builder()
         .description("description")
         .name("name")
         .provider("provider")
         .providerConfiguration(ProviderConfigurationProperty.builder()
                 .azure(AzureProviderConfigurationProperty.builder()
                         .autoInstallVmScanner(false)
                         .awsConfigConnectorArn("awsConfigConnectorArn")
                         .azureRegions(List.of("azureRegions"))
                         .scopeConfiguration(AzureScopeConfigurationMapProperty.builder()
                                 .containerImageScanning(ScopeConfigurationProperty.builder()
                                         .scopeType("scopeType")
                                         .scopeValues(List.of("scopeValues"))
                                         .state("state")
                                         .stateReason("stateReason")
                                         .build())
                                 .serverlessScanning(ScopeConfigurationProperty.builder()
                                         .scopeType("scopeType")
                                         .scopeValues(List.of("scopeValues"))
                                         .state("state")
                                         .stateReason("stateReason")
                                         .build())
                                 .vmScanning(ScopeConfigurationProperty.builder()
                                         .scopeType("scopeType")
                                         .scopeValues(List.of("scopeValues"))
                                         .state("state")
                                         .stateReason("stateReason")
                                         .build())
                                 .build())
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: