interface AzureProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnConnectorV2PropsMixin_AzureProviderConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnConnectorV2PropsMixin » 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/cfn-property-mixins';
const azureProviderConfigurationProperty: securityhub.CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty = {
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
scopeType: 'scopeType',
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
(optional)
The ARN of the AWS Config connector used for the Azure integration.
azureRegions?
Type:
string[]
(optional)
The list of Azure regions to include in the connector scope.
scopeConfiguration?
Type:
IResolvable | Azure
(optional)
The scope configuration for an Azure connector.

.NET
Go
Java
Python
TypeScript