interface ConnectionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnConnection.ConnectionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnConnection_ConnectionConfigurationProperty |
Java | software.amazon.awscdk.services.datazone.CfnConnection.ConnectionConfigurationProperty |
Python | aws_cdk.aws_datazone.CfnConnection.ConnectionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnConnection » 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-lib';
const connectionConfigurationProperty: datazone.CfnConnection.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