CfnConnectorProps
- class aws_cdk.aws_securityhub.CfnConnectorProps(*, name, provider, description=None, tags=None)
Bases:
objectProperties 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:
- 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.
- name
The name of the connector.
- provider
-
- Type:
see
- tags
A key-value pair to associate with a resource.