interface CfnConnectorV2Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorV2Props |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorV2Props |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorV2Props |
Python | aws_cdk.aws_securityhub.CfnConnectorV2Props |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorV2Props |
Properties for defining a CfnConnectorV2.
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 cfnConnectorV2Props: securityhub.CfnConnectorV2Props = {
name: 'name',
provider: {
jiraCloud: {
projectKey: 'projectKey',
},
serviceNow: {
instanceName: 'instanceName',
secretArn: 'secretArn',
},
},
// the properties below are optional
description: 'description',
kmsKeyArn: 'kmsKeyArn',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The unique name of the connectorV2. |
| provider | IResolvable | Provider | The third-party provider detail for a service configuration. |
| description? | string | The description of the connectorV2. |
| kms | string | The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2. |
| tags? | { [string]: string } | The tags to add to the connectorV2 when you create. |
name
Type:
string
The unique name of the connectorV2.
provider
Type:
IResolvable | Provider
The third-party provider detail for a service configuration.
description?
Type:
string
(optional)
The description of the connectorV2.
kmsKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2.
tags?
Type:
{ [string]: string }
(optional)
The tags to add to the connectorV2 when you create.

.NET
Go
Java
Python
TypeScript