Interface CfnConnector.AzureProviderConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.AzureProviderConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.AzureProviderConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration for connecting to an Azure environment.
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.*;
AzureProviderConfigurationProperty azureProviderConfigurationProperty = AzureProviderConfigurationProperty.builder()
.awsConfigConnectorArn("awsConfigConnectorArn")
.azureRegions(List.of("azureRegions"))
.scopeConfiguration(AzureScopeConfigurationProperty.builder()
.scopeType("scopeType")
// the properties below are optional
.scopeValues(List.of("scopeValues"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.AzureProviderConfigurationPropertystatic final classAn implementation forCfnConnector.AzureProviderConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the multi-cloud configuration connector used to establish the connection to Azure.The list of Azure regions to monitor.The scope configuration for an Azure connector, defining the tenant or subscription scope.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsConfigConnectorArn
The ARN of the multi-cloud configuration connector used to establish the connection to Azure.- See Also:
-
getAzureRegions
The list of Azure regions to monitor.- See Also:
-
getScopeConfiguration
The scope configuration for an Azure connector, defining the tenant or subscription scope.Returns union: either
IResolvableorCfnConnector.AzureScopeConfigurationProperty- See Also:
-
builder
-