interface ConnectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnConnectionPropsMixin.ConnectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnConnectionPropsMixin_ConnectionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnConnectionPropsMixin.ConnectionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnConnectionPropsMixin.ConnectionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » CfnConnectionPropsMixin » ConnectionConfigurationProperty |
A configuration of the connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from '@aws-cdk/cfn-property-mixins';
const connectionConfigurationProperty: datazone.CfnConnectionPropsMixin.ConnectionConfigurationProperty = {
classification: 'classification',
properties: {
propertiesKey: 'properties',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| classification? | string | The classification of the connection configuration. |
| properties? | { [string]: string } | IResolvable | Property Map. |
classification?
Type:
string
(optional)
The classification of the connection configuration.
properties?
Type:
{ [string]: string } | IResolvable
(optional)
Property Map.

.NET
Go
Java
Python
TypeScript