interface JiraCloudProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnConnectorV2PropsMixin.JiraCloudProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnConnectorV2PropsMixin_JiraCloudProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnConnectorV2PropsMixin.JiraCloudProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnConnectorV2PropsMixin.JiraCloudProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnConnectorV2PropsMixin » JiraCloudProperty |
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 { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const jiraCloudProperty: securityhub_mixins.CfnConnectorV2PropsMixin.JiraCloudProperty = {
authStatus: 'authStatus',
authUrl: 'authUrl',
cloudId: 'cloudId',
domain: 'domain',
projectKey: 'projectKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth | string | The status of the authorization between Jira Cloud and the service. |
| auth | string | The URL to provide to customers for OAuth auth code flow. |
| cloud | string | The cloud id of the Jira Cloud. |
| domain? | string | The URL domain of your Jira Cloud instance. |
| project | string | The projectKey of Jira Cloud. |
authStatus?
Type:
string
(optional)
The status of the authorization between Jira Cloud and the service.
authUrl?
Type:
string
(optional)
The URL to provide to customers for OAuth auth code flow.
cloudId?
Type:
string
(optional)
The cloud id of the Jira Cloud.
domain?
Type:
string
(optional)
The URL domain of your Jira Cloud instance.
projectKey?
Type:
string
(optional)
The projectKey of Jira Cloud.

.NET
Go
Java
Python
TypeScript