CfnConnectorProps

class aws_cdk.aws_securityhub.CfnConnectorProps(*, name, provider, description=None, tags=None)

Bases: object

Properties for defining a CfnConnector.

Parameters:
  • name (str) – The name of the connector.

  • provider (Union[IResolvable, ProviderProperty, Dict[str, Any]])

  • description (Optional[str]) – The description 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-connector.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 import aws_securityhub as securityhub

cfn_connector_props = securityhub.CfnConnectorProps(
    name="name",
    provider=securityhub.CfnConnector.ProviderProperty(
        azure=securityhub.CfnConnector.AzureProviderConfigurationProperty(
            aws_config_connector_arn="awsConfigConnectorArn",
            azure_regions=["azureRegions"],
            scope_configuration=securityhub.CfnConnector.AzureScopeConfigurationProperty(
                scope_type="scopeType",

                # the properties below are optional
                scope_values=["scopeValues"]
            )
        )
    ),

    # the properties below are optional
    description="description",
    tags={
        "tags_key": "tags"
    }
)

Attributes

description

The description of the connector.

See:

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

name

The name of the connector.

See:

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

provider

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

Type:

see

tags

A key-value pair to associate with a resource.

See:

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