CfnConnectorV2Props
- class aws_cdk.aws_securityhub.CfnConnectorV2Props(*, name, provider, description=None, kms_key_arn=None, tags=None)
Bases:
objectProperties for defining a
CfnConnectorV2.- Parameters:
name (
str) – The name of the connector.provider (
Union[IResolvable,ProviderProperty,Dict[str,Any]]) – The provider configuration of the connector.description (
Optional[str]) – A description of the connector.kms_key_arn (
Optional[str]) – The ARN of KMS key used for 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_v2_props = securityhub.CfnConnectorV2Props( name="name", provider=securityhub.CfnConnectorV2.ProviderProperty( jira_cloud=securityhub.CfnConnectorV2.JiraCloudProperty( project_key="projectKey", # the properties below are optional auth_status="authStatus", auth_url="authUrl", cloud_id="cloudId", domain="domain" ), service_now=securityhub.CfnConnectorV2.ServiceNowProperty( instance_name="instanceName", secret_arn="secretArn", # the properties below are optional auth_status="authStatus" ) ), # the properties below are optional description="description", kms_key_arn="kmsKeyArn", tags={ "tags_key": "tags" } )
Attributes
- description
A description of the connector.
- kms_key_arn
The ARN of KMS key used for the connector.
- name
The name of the connector.
- provider
The provider configuration of the connector.
- tags
A key-value pair to associate with a resource.