interface AzureScopeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2.AzureScopeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2_AzureScopeConfigurationProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2.AzureScopeConfigurationProperty |
Python | aws_cdk.aws_securityhub.CfnConnectorV2.AzureScopeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2 » AzureScopeConfigurationProperty |
The scope configuration for an Azure 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 azureScopeConfigurationProperty: securityhub.CfnConnectorV2.AzureScopeConfigurationProperty = {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
};
Properties
| Name | Type | Description |
|---|---|---|
| scope | string | The scope type for the Azure connector. |
| scope | string[] | The list of scope values for the Azure connector. |
scopeType
Type:
string
The scope type for the Azure connector.
scopeValues?
Type:
string[]
(optional)
The list of scope values for the Azure connector.

.NET
Go
Java
Python
TypeScript