Interface CfnConnector.AzureScopeConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.AzureScopeConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.AzureScopeConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.securityhub.*;
AzureScopeConfigurationProperty azureScopeConfigurationProperty = AzureScopeConfigurationProperty.builder()
.scopeType("scopeType")
// the properties below are optional
.scopeValues(List.of("scopeValues"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.AzureScopeConfigurationPropertystatic final classAn implementation forCfnConnector.AzureScopeConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The type of scope.The list of scope values, such as subscription IDs, when the scope type issubscription.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getScopeType
The type of scope.Valid values are
tenantandsubscription.- See Also:
-
getScopeValues
The list of scope values, such as subscription IDs, when the scope type issubscription.- See Also:
-
builder
-