interface ServiceNowProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnConnectorV2PropsMixin.ServiceNowProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnConnectorV2PropsMixin_ServiceNowProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnConnectorV2PropsMixin.ServiceNowProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnConnectorV2PropsMixin.ServiceNowProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnConnectorV2PropsMixin » ServiceNowProperty |
Information about a ServiceNow ITSM 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 serviceNowProperty: securityhub_mixins.CfnConnectorV2PropsMixin.ServiceNowProperty = {
authStatus: 'authStatus',
instanceName: 'instanceName',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth | string | The status of the authorization between ServiceNow and the service. |
| instance | string | The instanceName of ServiceNow ITSM. |
| secret | string | The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the ServiceNow credentials. |
authStatus?
Type:
string
(optional)
The status of the authorization between ServiceNow and the service.
instanceName?
Type:
string
(optional)
The instanceName of ServiceNow ITSM.
secretArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the ServiceNow credentials.

.NET
Go
Java
Python
TypeScript