interface OracleParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSource.OracleParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSource_OracleParametersProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSource.OracleParametersProperty |
Python | aws_cdk.aws_quicksight.CfnDataSource.OracleParametersProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSource » OracleParametersProperty |
Oracle parameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const oracleParametersProperty: quicksight.CfnDataSource.OracleParametersProperty = {
database: 'database',
host: 'host',
port: 123,
// the properties below are optional
useServiceName: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | Database. |
| host | string | Host. |
| port | number | Port. |
| use | boolean | IResolvable | A Boolean value that indicates whether the Database uses a service name or an SID. |
database
Type:
string
Database.
host
Type:
string
Host.
port
Type:
number
Port.
useServiceName?
Type:
boolean | IResolvable
(optional, default: false)
A Boolean value that indicates whether the Database uses a service name or an SID.
If this value is left blank, the default value is SID . If this value is set to false , the value is SID .

.NET
Go
Java
Python
TypeScript