interface AzureProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnConnectorPropsMixin.AzureProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnConnectorPropsMixin_AzureProviderConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnConnectorPropsMixin.AzureProviderConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnConnectorPropsMixin.AzureProviderConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » CfnConnectorPropsMixin » 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/cfn-property-mixins';
const azureProviderConfigurationProperty: inspectorv2.CfnConnectorPropsMixin.AzureProviderConfigurationProperty = {
autoInstallVmScanner: false,
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
containerImageScanning: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
serverlessScanning: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
vmScanning: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | boolean | IResolvable | Whether to automatically install the VM scanner. |
| 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. |
autoInstallVmScanner?
Type:
boolean | IResolvable
(optional, default: true)
Whether to automatically install the VM scanner.
Defaults to true.
awsConfigConnectorArn?
Type:
string
(optional)
The ARN of the AWS Config connector used for Azure resource discovery.
azureRegions?
Type:
string[]
(optional)
List of Azure regions to scan.
scopeConfiguration?
Type:
IResolvable | Azure
(optional)
Defines which resource types to scan and at what scope level.

.NET
Go
Java
Python
TypeScript