Interface CfnConnector.ScopeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.ScopeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.ScopeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.inspectorv2.*;
ScopeConfigurationProperty scopeConfigurationProperty = ScopeConfigurationProperty.builder()
.scopeType("scopeType")
// the properties below are optional
.scopeValues(List.of("scopeValues"))
.state("state")
.stateReason("stateReason")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.ScopeConfigurationPropertystatic final classAn implementation forCfnConnector.ScopeConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScopeType
- See Also:
-
getScopeValues
List of subscription IDs.Empty for TENANT scope.
- See Also:
-
getState
- See Also:
-
getStateReason
Reason for the current scope state.- See Also:
-
builder
-