interface ProviderProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2.ProviderProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2_ProviderProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2.ProviderProperty |
Python | aws_cdk.aws_securityhub.CfnConnectorV2.ProviderProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2 » ProviderProperty |
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 providerProperty: securityhub.CfnConnectorV2.ProviderProperty = {
jiraCloud: {
projectKey: 'projectKey',
// the properties below are optional
authStatus: 'authStatus',
authUrl: 'authUrl',
cloudId: 'cloudId',
domain: 'domain',
},
serviceNow: {
instanceName: 'instanceName',
secretArn: 'secretArn',
// the properties below are optional
authStatus: 'authStatus',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| jira | IResolvable | Jira | |
| service | IResolvable | Service |
jiraCloud?
Type:
IResolvable | Jira
(optional)
serviceNow?
Type:
IResolvable | Service
(optional)

.NET
Go
Java
Python
TypeScript