interface AzureProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2.AzureProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2_AzureProviderConfigurationProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2.AzureProviderConfigurationProperty |
Python | aws_cdk.aws_securityhub.CfnConnectorV2.AzureProviderConfigurationProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2 » AzureProviderConfigurationProperty |
The configuration settings required to establish an integration between AWS Security Hub and Azure.
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-lib';
const azureProviderConfigurationProperty: securityhub.CfnConnectorV2.AzureProviderConfigurationProperty = {
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The ARN of the AWS Config connector used for the Azure integration. |
| azure | string[] | The list of Azure regions to include in the connector scope. |
| scope | IResolvable | Azure | The scope configuration for an Azure connector. |
awsConfigConnectorArn
Type:
string
The ARN of the AWS Config connector used for the Azure integration.
azureRegions
Type:
string[]
The list of Azure regions to include in the connector scope.
scopeConfiguration
Type:
IResolvable | Azure
The scope configuration for an Azure connector.

.NET
Go
Java
Python
TypeScript