interface CfnConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » 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_inspectorv2 as inspectorv2 } from '@aws-cdk/cfn-property-mixins';
const cfnConnectorMixinProps: inspectorv2.CfnConnectorMixinProps = {
description: 'description',
name: 'name',
provider: 'provider',
providerConfiguration: {
azure: {
autoInstallVmScanner: false,
awsConfigConnectorArn: 'awsConfigConnectorArn',
azureRegions: ['azureRegions'],
scopeConfiguration: {
containerImageScanning: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
serverlessScanning: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
vmScanning: {
scopeType: 'scopeType',
scopeValues: ['scopeValues'],
state: 'state',
stateReason: 'stateReason',
},
},
},
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | Optional description of the connector. |
| name? | string | Display name for the connector. |
| provider? | string | |
| provider | IResolvable | Provider | |
| tags? | Cfn[] | Tags to apply to the connector. |
description?
Type:
string
(optional)
Optional description of the connector.
name?
Type:
string
(optional)
Display name for the connector.
provider?
Type:
string
(optional)
providerConfiguration?
Type:
IResolvable | Provider
(optional)
tags?
Type:
Cfn[]
(optional)
Tags to apply to the connector.

.NET
Go
Java
Python
TypeScript