interface AzureScopeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnConnectorPropsMixin.AzureScopeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnConnectorPropsMixin_AzureScopeConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnConnectorPropsMixin.AzureScopeConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnConnectorPropsMixin.AzureScopeConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnConnectorPropsMixin » 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/cfn-property-mixins';
const azureScopeConfigurationProperty: securityhub.CfnConnectorPropsMixin.AzureScopeConfigurationProperty = {
scopeType: 'scopeType',
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
(optional)
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