interface AzureScopeConfigurationMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.InspectorV2.CfnConnector.AzureScopeConfigurationMapProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnConnector_AzureScopeConfigurationMapProperty |
Java | software.amazon.awscdk.services.inspectorv2.CfnConnector.AzureScopeConfigurationMapProperty |
Python | aws_cdk.aws_inspectorv2.CfnConnector.AzureScopeConfigurationMapProperty |
TypeScript | aws-cdk-lib » aws_inspectorv2 » CfnConnector » AzureScopeConfigurationMapProperty |
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 { aws_inspectorv2 as inspectorv2 } from 'aws-cdk-lib';
const azureScopeConfigurationMapProperty: inspectorv2.CfnConnector.AzureScopeConfigurationMapProperty = {
containerImageScanning: {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
serverlessScanning: {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
vmScanning: {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| container | IResolvable | Scope | Defines the scope of Azure resources to monitor for a specific resource type. |
| serverless | IResolvable | Scope | Defines the scope of Azure resources to monitor for a specific resource type. |
| vm | IResolvable | Scope | Defines the scope of Azure resources to monitor for a specific resource type. |
containerImageScanning?
Type:
IResolvable | Scope
(optional)
Defines the scope of Azure resources to monitor for a specific resource type.
serverlessScanning?
Type:
IResolvable | Scope
(optional)
Defines the scope of Azure resources to monitor for a specific resource type.
vmScanning?
Type:
IResolvable | Scope
(optional)
Defines the scope of Azure resources to monitor for a specific resource type.

.NET
Go
Java
Python
TypeScript