interface ScopeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.InspectorV2.CfnConnector.ScopeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnConnector_ScopeConfigurationProperty |
Java | software.amazon.awscdk.services.inspectorv2.CfnConnector.ScopeConfigurationProperty |
Python | aws_cdk.aws_inspectorv2.CfnConnector.ScopeConfigurationProperty |
TypeScript | aws-cdk-lib » aws_inspectorv2 » CfnConnector » ScopeConfigurationProperty |
Defines the scope of Azure resources to monitor for a specific resource type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_inspectorv2 as inspectorv2 } from 'aws-cdk-lib';
const scopeConfigurationProperty: inspectorv2.CfnConnector.ScopeConfigurationProperty = {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
};
Properties
| Name | Type | Description |
|---|---|---|
| scope | string | |
| scope | string[] | List of subscription IDs. |
| state? | string | |
| state | string | Reason for the current scope state. |
scopeType
Type:
string
scopeValues?
Type:
string[]
(optional)
List of subscription IDs.
Empty for TENANT scope.
state?
Type:
string
(optional)
stateReason?
Type:
string
(optional)
Reason for the current scope state.

.NET
Go
Java
Python
TypeScript