interface OracleParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.OracleParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_OracleParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.OracleParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.OracleParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const oracleParametersProperty: quicksight.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