interface ProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnector.ProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnector_ProviderProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnector.ProviderProperty |
Python | aws_cdk.aws_securityhub.CfnConnector.ProviderProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnector » ProviderProperty |
The CSPM provider configuration for the connector.
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 providerProperty: securityhub.CfnConnector.ProviderProperty = {
azure: {
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| azure | IResolvable | Azure | The configuration for connecting to an Azure environment. |
azure
Type:
IResolvable | Azure
The configuration for connecting to an Azure environment.

.NET
Go
Java
Python
TypeScript