interface AmazonQPropertiesInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnConnection.AmazonQPropertiesInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnConnection_AmazonQPropertiesInputProperty |
Java | software.amazon.awscdk.services.datazone.CfnConnection.AmazonQPropertiesInputProperty |
Python | aws_cdk.aws_datazone.CfnConnection.AmazonQPropertiesInputProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnConnection » AmazonQPropertiesInputProperty |
Amazon Q properties 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 amazonQPropertiesInputProperty: datazone.CfnConnection.AmazonQPropertiesInputProperty = {
authMode: 'authMode',
isEnabled: false,
profileArn: 'profileArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| auth | string | The authentication mode of the connection's AmazonQ properties. |
| is | boolean | IResolvable | Specifies whether Amazon Q is enabled for the connection. |
| profile | string |
authMode?
Type:
string
(optional)
The authentication mode of the connection's AmazonQ properties.
isEnabled?
Type:
boolean | IResolvable
(optional)
Specifies whether Amazon Q is enabled for the connection.
profileArn?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript