Interface CfnConnectorV2.ProviderProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorV2.ProviderProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorV2
@Stability(Stable)
public static interface CfnConnectorV2.ProviderProperty
extends software.amazon.jsii.JsiiSerializable
The third-party provider detail for a service configuration.
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.*;
ProviderProperty providerProperty = ProviderProperty.builder()
.jiraCloud(JiraCloudProviderConfigurationProperty.builder()
.projectKey("projectKey")
.build())
.serviceNow(ServiceNowProviderConfigurationProperty.builder()
.instanceName("instanceName")
.secretArn("secretArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorV2.ProviderPropertystatic final classAn implementation forCfnConnectorV2.ProviderProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJiraCloud
Details about a Jira Cloud integration.Returns union: either
IResolvableorCfnConnectorV2.JiraCloudProviderConfigurationProperty- See Also:
-
getServiceNow
Details about a ServiceNow ITSM integration.Returns union: either
IResolvableorCfnConnectorV2.ServiceNowProviderConfigurationProperty- See Also:
-
builder
-