interface JiraCloudProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2.JiraCloudProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2_JiraCloudProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2.JiraCloudProperty |
Python | aws_cdk.aws_securityhub.CfnConnectorV2.JiraCloudProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2 » JiraCloudProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from 'aws-cdk-lib';
const jiraCloudProperty: securityhub.CfnConnectorV2.JiraCloudProperty = {
projectKey: 'projectKey',
// the properties below are optional
authStatus: 'authStatus',
authUrl: 'authUrl',
cloudId: 'cloudId',
domain: 'domain',
};
Properties
| Name | Type | Description |
|---|---|---|
| project | string | |
| auth | string | The auth status of the connector. |
| auth | string | The authUrl of the JiraCloud connector. |
| cloud | string | |
| domain? | string |
projectKey
Type:
string
authStatus?
Type:
string
(optional)
The auth status of the connector.
authUrl?
Type:
string
(optional)
The authUrl of the JiraCloud connector.
cloudId?
Type:
string
(optional)
domain?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript