CfnConnectorV2MixinProps

class aws_cdk.mixins_preview.aws_securityhub.mixins.CfnConnectorV2MixinProps(*, description=None, kms_key_arn=None, name=None, provider=None, tags=None)

Bases: object

Properties for CfnConnectorV2PropsMixin.

Parameters:
  • description (Optional[str]) – The description of the connectorV2.

  • kms_key_arn (Optional[str]) – The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2.

  • name (Optional[str]) – The unique name of the connectorV2.

  • provider (Union[IResolvable, ProviderProperty, Dict[str, Any], None]) – The third-party provider detail for a service configuration.

  • tags (Optional[Mapping[str, str]]) – The tags to add to the connectorV2 when you create.

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_securityhub import mixins as securityhub_mixins

cfn_connector_v2_mixin_props = securityhub_mixins.CfnConnectorV2MixinProps(
    description="description",
    kms_key_arn="kmsKeyArn",
    name="name",
    provider=securityhub_mixins.CfnConnectorV2PropsMixin.ProviderProperty(
        jira_cloud=securityhub_mixins.CfnConnectorV2PropsMixin.JiraCloudProperty(
            auth_status="authStatus",
            auth_url="authUrl",
            cloud_id="cloudId",
            domain="domain",
            project_key="projectKey"
        ),
        service_now=securityhub_mixins.CfnConnectorV2PropsMixin.ServiceNowProperty(
            auth_status="authStatus",
            instance_name="instanceName",
            secret_arn="secretArn"
        )
    ),
    tags={
        "tags_key": "tags"
    }
)

Attributes

description

The description of the connectorV2.

See:

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

kms_key_arn

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

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.

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.

See:

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

tags

The tags to add to the connectorV2 when you create.

See:

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