Interface CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorV2PropsMixin
@Stability(Stable)
public static interface CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The configuration settings required to establish an integration between AWS Security Hub and Azure.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.securityhub.*;
AzureProviderConfigurationProperty azureProviderConfigurationProperty = AzureProviderConfigurationProperty.builder()
.awsConfigConnectorArn("awsConfigConnectorArn")
.azureRegions(List.of("azureRegions"))
.scopeConfiguration(AzureScopeConfigurationProperty.builder()
.scopeType("scopeType")
.scopeValues(List.of("scopeValues"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConnectorV2PropsMixin.AzureProviderConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsConfigConnectorArn
The ARN of the AWS Config connector used for the Azure integration.- See Also:
-
getAzureRegions
The list of Azure regions to include in the connector scope.- See Also:
-
getScopeConfiguration
The scope configuration for an Azure connector.Returns union: either
IResolvableorCfnConnectorV2PropsMixin.AzureScopeConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnConnectorV2PropsMixin.AzureProviderConfigurationProperty.Builder builder()
-