interface ServiceNowProviderConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityHub.Mixins.CfnConnectorV2PropsMixin.ServiceNowProviderConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecurityhub/mixins#CfnConnectorV2PropsMixin_ServiceNowProviderConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.securityhub.mixins.CfnConnectorV2PropsMixin.ServiceNowProviderConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_securityhub.mixins.CfnConnectorV2PropsMixin.ServiceNowProviderConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securityhub » mixins » CfnConnectorV2PropsMixin » 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 { mixins as securityhub_mixins } from '@aws-cdk/mixins-preview/aws-securityhub';
const serviceNowProviderConfigurationProperty: securityhub_mixins.CfnConnectorV2PropsMixin.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
(optional)
The instance name 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