Show / Hide Table of Contents

Class CfnConnectorV2MixinProps

Properties for CfnConnectorV2PropsMixin.

Inheritance
object
CfnConnectorV2MixinProps
Implements
ICfnConnectorV2MixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#cfn-securityhub-connectorv2-description

KmsKeyArn

The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2.

public string? KmsKeyArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#cfn-securityhub-connectorv2-kmskeyarn

Name

The unique name of the connectorV2.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#cfn-securityhub-connectorv2-name

Provider

The third-party provider detail for a service configuration.

public object? Provider { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#cfn-securityhub-connectorv2-provider

Type union: either IResolvable or CfnConnectorV2PropsMixin.IProviderProperty

Tags

The tags to add to the connectorV2 when you create.

public IDictionary<string, string>? Tags { get; set; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#cfn-securityhub-connectorv2-tags

Implements

ICfnConnectorV2MixinProps
Back to top Generated by DocFX