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

.NET
Go
Java
Python
TypeScript