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

.NET
Go
Java
Python
TypeScript