interface OracleParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSourcePropsMixin.OracleParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSourcePropsMixin_OracleParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSourcePropsMixin.OracleParametersProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSourcePropsMixin.OracleParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSourcePropsMixin » OracleParametersProperty |
Oracle parameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const oracleParametersProperty: quicksight_mixins.CfnDataSourcePropsMixin.OracleParametersProperty = {
database: 'database',
host: 'host',
port: 123,
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
(optional)
Database.
host?
Type:
string
(optional)
Host.
port?
Type:
number
(optional, default: 0)
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