Interface CfnConnectorPropsMixin.AzureScopeConfigurationMapProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorPropsMixin.AzureScopeConfigurationMapProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorPropsMixin
@Stability(Stable)
public static interface CfnConnectorPropsMixin.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.cfnpropertymixins.services.inspectorv2.*;
AzureScopeConfigurationMapProperty azureScopeConfigurationMapProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConnectorPropsMixin.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
IResolvableorCfnConnectorPropsMixin.ScopeConfigurationProperty- See Also:
-
getServerlessScanning
Defines the scope of Azure resources to monitor for a specific resource type.Returns union: either
IResolvableorCfnConnectorPropsMixin.ScopeConfigurationProperty- See Also:
-
getVmScanning
Defines the scope of Azure resources to monitor for a specific resource type.Returns union: either
IResolvableorCfnConnectorPropsMixin.ScopeConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnConnectorPropsMixin.AzureScopeConfigurationMapProperty.Builder builder()
-