interface AzureProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnConnectorPropsMixin.AzureProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnConnectorPropsMixin_AzureProviderConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnConnectorPropsMixin.AzureProviderConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnConnectorPropsMixin.AzureProviderConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnConnectorPropsMixin » AzureProviderConfigurationProperty |
The configuration for connecting to an Azure environment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from '@aws-cdk/cfn-property-mixins';
const azureProviderConfigurationProperty: securityhub.CfnConnectorPropsMixin.AzureProviderConfigurationProperty = {
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The ARN of the multi-cloud configuration connector used to establish the connection to Azure. |
| azure | string[] | The list of Azure regions to monitor. |
| scope | IResolvable | Azure | The scope configuration for an Azure connector, defining the tenant or subscription scope. |
awsConfigConnectorArn?
Type:
string
(optional)
The ARN of the multi-cloud configuration connector used to establish the connection to Azure.
azureRegions?
Type:
string[]
(optional)
The list of Azure regions to monitor.
scopeConfiguration?
Type:
IResolvable | Azure
(optional)
The scope configuration for an Azure connector, defining the tenant or subscription scope.

.NET
Go
Java
Python
TypeScript