CfnConnectorMixinProps

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

Bases: object

Properties for CfnConnectorPropsMixin.

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

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

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

  • 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.cfn_property_mixins import aws_securityhub as securityhub

cfn_connector_mixin_props = securityhub.CfnConnectorMixinProps(
    description="description",
    name="name",
    provider=securityhub.CfnConnectorPropsMixin.ProviderProperty(
        azure=securityhub.CfnConnectorPropsMixin.AzureProviderConfigurationProperty(
            aws_config_connector_arn="awsConfigConnectorArn",
            azure_regions=["azureRegions"],
            scope_configuration=securityhub.CfnConnectorPropsMixin.AzureScopeConfigurationProperty(
                scope_type="scopeType",
                scope_values=["scopeValues"]
            )
        )
    ),
    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