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
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(JiraCloudProperty.builder()
.projectKey("projectKey")
// the properties below are optional
.authStatus("authStatus")
.authUrl("authUrl")
.cloudId("cloudId")
.domain("domain")
.build())
.serviceNow(ServiceNowProperty.builder()
.instanceName("instanceName")
.secretArn("secretArn")
// the properties below are optional
.authStatus("authStatus")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorV2.ProviderPropertystatic final classAn implementation forCfnConnectorV2.ProviderProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnConnectorV2.JiraCloudPropertydefault ObjectReturns union: eitherIResolvableorCfnConnectorV2.ServiceNowPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJiraCloud
Returns union: eitherIResolvableorCfnConnectorV2.JiraCloudProperty- See Also:
-
getServiceNow
Returns union: eitherIResolvableorCfnConnectorV2.ServiceNowProperty- See Also:
-
builder
-