Interface CfnConnector.AzureProviderConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.AzureProviderConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.AzureProviderConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.inspectorv2.*;
AzureProviderConfigurationProperty azureProviderConfigurationProperty = AzureProviderConfigurationProperty.builder()
.awsConfigConnectorArn("awsConfigConnectorArn")
.azureRegions(List.of("azureRegions"))
.scopeConfiguration(AzureScopeConfigurationMapProperty.builder()
.containerImageScanning(ScopeConfigurationProperty.builder()
.scopeType("scopeType")
// the properties below are optional
.scopeValues(List.of("scopeValues"))
.state("state")
.stateReason("stateReason")
.build())
.serverlessScanning(ScopeConfigurationProperty.builder()
.scopeType("scopeType")
// the properties below are optional
.scopeValues(List.of("scopeValues"))
.state("state")
.stateReason("stateReason")
.build())
.vmScanning(ScopeConfigurationProperty.builder()
.scopeType("scopeType")
// the properties below are optional
.scopeValues(List.of("scopeValues"))
.state("state")
.stateReason("stateReason")
.build())
.build())
// the properties below are optional
.autoInstallVmScanner(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.AzureProviderConfigurationPropertystatic final classAn implementation forCfnConnector.AzureProviderConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsConfigConnectorArn
The ARN of the AWS Config connector used for Azure resource discovery.- See Also:
-
getAzureRegions
List of Azure regions to scan.- See Also:
-
getScopeConfiguration
Defines which resource types to scan and at what scope level.Returns union: either
IResolvableorCfnConnector.AzureScopeConfigurationMapProperty- See Also:
-
getAutoInstallVmScanner
Whether to automatically install the VM scanner.Defaults to true.
Returns union: either
BooleanorIResolvableDefault: - true
- See Also:
-
builder
-