Interface CfnConnectorV2.JiraCloudProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorV2.JiraCloudProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorV2
@Stability(Stable)
public static interface CfnConnectorV2.JiraCloudProperty
extends software.amazon.jsii.JsiiSerializable
Information about the configuration and status of a Jira Cloud integration.
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.*;
JiraCloudProperty jiraCloudProperty = JiraCloudProperty.builder()
.projectKey("projectKey")
// the properties below are optional
.authStatus("authStatus")
.authUrl("authUrl")
.cloudId("cloudId")
.domain("domain")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorV2.JiraCloudPropertystatic final classAn implementation forCfnConnectorV2.JiraCloudProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe status of the authorization between Jira Cloud and the service.default StringThe URL to provide to customers for OAuth auth code flow.default StringThe cloud id of the Jira Cloud.default StringThe URL domain of your Jira Cloud instance.The projectKey of Jira Cloud.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getProjectKey
The projectKey of Jira Cloud.- See Also:
-
getAuthStatus
The status of the authorization between Jira Cloud and the service.- See Also:
-
getAuthUrl
The URL to provide to customers for OAuth auth code flow.- See Also:
-
getCloudId
The cloud id of the Jira Cloud.- See Also:
-
getDomain
The URL domain of your Jira Cloud instance.- See Also:
-
builder
-