Interface CfnDataSource.OracleParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.OracleParametersProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.OracleParametersProperty
extends software.amazon.jsii.JsiiSerializable
Oracle parameters.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
OracleParametersProperty oracleParametersProperty = OracleParametersProperty.builder()
.database("database")
.host("host")
.port(123)
// the properties below are optional
.useServiceName(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataSource.OracleParametersPropertystatic final classAn implementation forCfnDataSource.OracleParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatabase
Database.- See Also:
-
getHost
Host.- See Also:
-
getPort
Port.Default: - 0
- See Also:
-
getUseServiceName
A Boolean value that indicates whether theDatabaseuses a service name or an SID.If this value is left blank, the default value is
SID. If this value is set tofalse, the value isSID.Returns union: either
BooleanorIResolvableDefault: - false
- See Also:
-
builder
-