interface AzureProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.InspectorV2.CfnConnector.AzureProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnConnector_AzureProviderConfigurationProperty |
Java | software.amazon.awscdk.services.inspectorv2.CfnConnector.AzureProviderConfigurationProperty |
Python | aws_cdk.aws_inspectorv2.CfnConnector.AzureProviderConfigurationProperty |
TypeScript | aws-cdk-lib » aws_inspectorv2 » CfnConnector » AzureProviderConfigurationProperty |
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 azureProviderConfigurationProperty: inspectorv2.CfnConnector.AzureProviderConfigurationProperty = {
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
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',
},
},
// the properties below are optional
autoInstallVmScanner: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The ARN of the AWS Config connector used for Azure resource discovery. |
| azure | string[] | List of Azure regions to scan. |
| scope | IResolvable | Azure | Defines which resource types to scan and at what scope level. |
| auto | boolean | IResolvable | Whether to automatically install the VM scanner. |
awsConfigConnectorArn
Type:
string
The ARN of the AWS Config connector used for Azure resource discovery.
azureRegions
Type:
string[]
List of Azure regions to scan.
scopeConfiguration
Type:
IResolvable | Azure
Defines which resource types to scan and at what scope level.
autoInstallVmScanner?
Type:
boolean | IResolvable
(optional, default: true)
Whether to automatically install the VM scanner.
Defaults to true.

.NET
Go
Java
Python
TypeScript