Interface CfnConnector.AzureScopeConfigurationMapProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.AzureScopeConfigurationMapProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.AzureScopeConfigurationMapProperty
extends software.amazon.jsii.JsiiSerializable
Defines which resource types to scan and at what scope level.
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.*;
AzureScopeConfigurationMapProperty azureScopeConfigurationMapProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.AzureScopeConfigurationMapPropertystatic final classAn implementation forCfnConnector.AzureScopeConfigurationMapProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDefines the scope of Azure resources to monitor for a specific resource type.default ObjectDefines the scope of Azure resources to monitor for a specific resource type.default ObjectDefines the scope of Azure resources to monitor for a specific resource type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerImageScanning
Defines the scope of Azure resources to monitor for a specific resource type.Returns union: either
IResolvableorCfnConnector.ScopeConfigurationProperty- See Also:
-
getServerlessScanning
Defines the scope of Azure resources to monitor for a specific resource type.Returns union: either
IResolvableorCfnConnector.ScopeConfigurationProperty- See Also:
-
getVmScanning
Defines the scope of Azure resources to monitor for a specific resource type.Returns union: either
IResolvableorCfnConnector.ScopeConfigurationProperty- See Also:
-
builder
-