Interface CfnConnectorV2.AzureProviderConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorV2.AzureProviderConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorV2
@Stability(Stable)
public static interface CfnConnectorV2.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.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 forCfnConnectorV2.AzureProviderConfigurationPropertystatic final classAn implementation forCfnConnectorV2.AzureProviderConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the AWS Config connector used for the Azure integration.The list of Azure regions to include in the connector scope.The scope configuration for an Azure connector.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
IResolvableorCfnConnectorV2.AzureScopeConfigurationProperty- See Also:
-
builder
-