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]) – A description of the connector.

  • kms_key_arn (Optional[str]) – The ARN of KMS key used for the connector.

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

  • provider (Union[IResolvable, ProviderProperty, Dict[str, Any], None]) – The provider configuration of the connector.

  • tags (Optional[Mapping[str, str]]) – A key-value pair to associate with a resource.

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

A description of the connector.

See:

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

kms_key_arn

The ARN of KMS key used for the connector.

See:

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

name

The name of the connector.

See:

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

provider

The provider configuration of the connector.

See:

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

tags

A key-value pair to associate with a resource.

See:

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