interface CfnConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityHub.CfnConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityhub#CfnConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityhub.CfnConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_securityhub.CfnConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityhub » CfnConnectorMixinProps |
Properties for CfnConnectorPropsMixin.
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/cfn-property-mixins';
const cfnConnectorMixinProps: securityhub.CfnConnectorMixinProps = {
description: 'description',
name: 'name',
provider: {
azure: {
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
},
},
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the connector. |
| name? | string | The name of the connector. |
| provider? | IResolvable | Provider | |
| tags? | { [string]: string } | A key-value pair to associate with a resource. |
description?
Type:
string
(optional)
The description of the connector.
name?
Type:
string
(optional)
The name of the connector.
provider?
Type:
IResolvable | Provider
(optional)
tags?
Type:
{ [string]: string }
(optional)
A key-value pair to associate with a resource.

.NET
Go
Java
Python
TypeScript