Class CfnConnectorV2MixinProps
Properties for CfnConnectorV2PropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnConnectorV2MixinProps : ICfnConnectorV2MixinProps
Syntax (vb)
Public Class CfnConnectorV2MixinProps Implements ICfnConnectorV2MixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub;
var cfnConnectorV2MixinProps = new CfnConnectorV2MixinProps {
Description = "description",
KmsKeyArn = "kmsKeyArn",
Name = "name",
Provider = new ProviderProperty {
JiraCloud = new JiraCloudProviderConfigurationProperty {
ProjectKey = "projectKey"
},
ServiceNow = new ServiceNowProviderConfigurationProperty {
InstanceName = "instanceName",
SecretArn = "secretArn"
}
},
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Constructors
| CfnConnectorV2MixinProps() | Properties for CfnConnectorV2PropsMixin. |
Properties
| Description | The description of the connectorV2. |
| KmsKeyArn | The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2. |
| Name | The unique name of the connectorV2. |
| Provider | The third-party provider detail for a service configuration. |
| Tags | The tags to add to the connectorV2 when you create. |
Constructors
CfnConnectorV2MixinProps()
Properties for CfnConnectorV2PropsMixin.
public CfnConnectorV2MixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub;
var cfnConnectorV2MixinProps = new CfnConnectorV2MixinProps {
Description = "description",
KmsKeyArn = "kmsKeyArn",
Name = "name",
Provider = new ProviderProperty {
JiraCloud = new JiraCloudProviderConfigurationProperty {
ProjectKey = "projectKey"
},
ServiceNow = new ServiceNowProviderConfigurationProperty {
InstanceName = "instanceName",
SecretArn = "secretArn"
}
},
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Properties
Description
The description of the connectorV2.
public string? Description { get; set; }
Property Value
Remarks
KmsKeyArn
The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2.
public string? KmsKeyArn { get; set; }
Property Value
Remarks
Name
The unique name of the connectorV2.
public string? Name { get; set; }
Property Value
Remarks
Provider
The third-party provider detail for a service configuration.
public object? Provider { get; set; }
Property Value
Remarks
Tags
The tags to add to the connectorV2 when you create.
public IDictionary<string, string>? Tags { get; set; }