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',
// the properties below are optional
authStatus: 'authStatus',
authUrl: 'authUrl',
cloudId: 'cloudId',
domain: 'domain',
},
serviceNow: {
instanceName: 'instanceName',
secretArn: 'secretArn',
// the properties below are optional
authStatus: 'authStatus',
},
},
// the properties below are optional
description: 'description',
kmsKeyArn: 'kmsKeyArn',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the connector. |
| provider | IResolvable | Provider | The provider configuration of the connector. |
| description? | string | A description of the connector. |
| kms | string | The ARN of KMS key used for the connector. |
| tags? | { [string]: string } | A key-value pair to associate with a resource. |
name
Type:
string
The name of the connector.
provider
Type:
IResolvable | Provider
The provider configuration of the connector.
description?
Type:
string
(optional)
A description of the connector.
kmsKeyArn?
Type:
string
(optional)
The ARN of KMS key used for the connector.
tags?
Type:
{ [string]: string }
(optional)
A key-value pair to associate with a resource.

.NET
Go
Java
Python
TypeScript