interface ServiceNowProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2.ServiceNowProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2_ServiceNowProviderConfigurationProperty |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2.ServiceNowProviderConfigurationProperty |
Python | aws_cdk.aws_securityhub.CfnConnectorV2.ServiceNowProviderConfigurationProperty |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2 » ServiceNowProviderConfigurationProperty |
The initial configuration settings required to establish an integration between Security Hub CSPM and ServiceNow ITSM.
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 serviceNowProviderConfigurationProperty: securityhub.CfnConnectorV2.ServiceNowProviderConfigurationProperty = {
instanceName: 'instanceName',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The instance name of ServiceNow ITSM. |
| secret | string | The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the ServiceNow credentials. |
instanceName
Type:
string
The instance name of ServiceNow ITSM.
secretArn
Type:
string
The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the ServiceNow credentials.

.NET
Go
Java
Python
TypeScript