interface ServiceNowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2.ServiceNowProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2_ServiceNowProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2.ServiceNowProperty |
Python | aws_cdk.aws_securityhub.CfnConnectorV2.ServiceNowProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2 » ServiceNowProperty |
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 serviceNowProperty: securityhub.CfnConnectorV2.ServiceNowProperty = {
instanceName: 'instanceName',
secretArn: 'secretArn',
// the properties below are optional
authStatus: 'authStatus',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | |
| secret | string | The ARN of secrets manager containing ClientId and ClientSecret. |
| auth | string | The auth status of the connector. |
instanceName
Type:
string
secretArn
Type:
string
The ARN of secrets manager containing ClientId and ClientSecret.
authStatus?
Type:
string
(optional)
The auth status of the connector.

.NET
Go
Java
Python
TypeScript