Interface CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorProfile
@Stability(Stable)
public static interface CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty
extends software.amazon.jsii.JsiiSerializable
The connector-specific profile properties required when using Snowflake.
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.appflow.*; SnowflakeConnectorProfilePropertiesProperty snowflakeConnectorProfilePropertiesProperty = SnowflakeConnectorProfilePropertiesProperty.builder() .bucketName("bucketName") .stage("stage") .warehouse("warehouse") // the properties below are optional .accountName("accountName") .bucketPrefix("bucketPrefix") .privateLinkServiceName("privateLinkServiceName") .region("region") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The name of the account.The name of the Amazon S3 bucket associated with Snowflake.default String
The bucket path that refers to the Amazon S3 bucket associated with Snowflake.default String
The Snowflake Private Link service name to be used for private data transfers.default String
The AWS Region of the Snowflake account.getStage()
The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account.The name of the Snowflake warehouse.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucketName
The name of the Amazon S3 bucket associated with Snowflake.- See Also:
-
getStage
The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account.This is written in the following format: < Database>< Schema>
. - See Also:
-
getWarehouse
The name of the Snowflake warehouse.- See Also:
-
getAccountName
The name of the account.- See Also:
-
getBucketPrefix
The bucket path that refers to the Amazon S3 bucket associated with Snowflake.- See Also:
-
getPrivateLinkServiceName
The Snowflake Private Link service name to be used for private data transfers.- See Also:
-
getRegion
The AWS Region of the Snowflake account.- See Also:
-
builder
@Stability(Stable) static CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty.Builder builder()
-