interface CfnConnectorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityHub.CfnConnectorProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityhub#CfnConnectorProps |
Java | software.amazon.awscdk.services.securityhub.CfnConnectorProps |
Python | aws_cdk.aws_securityhub.CfnConnectorProps |
TypeScript | aws-cdk-lib » aws_securityhub » CfnConnectorProps |
Properties for defining a CfnConnector.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityhub as securityhub } from 'aws-cdk-lib';
const cfnConnectorProps: securityhub.CfnConnectorProps = {
name: 'name',
provider: {
azure: {
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
scopeType: 'scopeType',
// the properties below are optional
scopeValues: ['scopeValues'],
},
},
},
// the properties below are optional
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the connector. |
| provider | IResolvable | Provider | |
| description? | string | The description of the connector. |
| tags? | { [string]: string } | A key-value pair to associate with a resource. |
name
Type:
string
The name of the connector.
provider
Type:
IResolvable | Provider
description?
Type:
string
(optional)
The description of the connector.
tags?
Type:
{ [string]: string }
(optional)
A key-value pair to associate with a resource.

.NET
Go
Java
Python
TypeScript