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 unique name of the connectorV2.provider (
Union[IResolvable,ProviderProperty,Dict[str,Any]]) – The third-party provider detail for a service configuration.description (
Optional[str]) – The description of the connectorV2.kms_key_arn (
Optional[str]) – The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2.tags (
Optional[Mapping[str,str]]) – The tags to add to the connectorV2 when you create.
- 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
The description of the connectorV2.
- kms_key_arn
The Amazon Resource Name (ARN) of KMS key used to encrypt secrets for the connectorV2.
- name
The unique name of the connectorV2.
- provider
The third-party provider detail for a service configuration.
- tags
The tags to add to the connectorV2 when you create.