Interface CfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorProfilePropsMixin
@Stability(Stable)
public static interface CfnConnectorProfilePropsMixin.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.cfnpropertymixins.services.appflow.*;
SnowflakeConnectorProfilePropertiesProperty snowflakeConnectorProfilePropertiesProperty = SnowflakeConnectorProfilePropertiesProperty.builder()
.accountName("accountName")
.bucketName("bucketName")
.bucketPrefix("bucketPrefix")
.privateLinkServiceName("privateLinkServiceName")
.region("region")
.stage("stage")
.warehouse("warehouse")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the account.default StringThe name of the Amazon S3 bucket associated with Snowflake.default StringThe bucket path that refers to the Amazon S3 bucket associated with Snowflake.default StringThe Snowflake Private Link service name to be used for private data transfers.default StringThe AWS Region of the Snowflake account.default StringgetStage()The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account.default StringThe name of the Snowflake warehouse.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountName
The name of the account.- See Also:
-
getBucketName
The name of the Amazon S3 bucket associated with Snowflake.- 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:
-
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:
-
builder
@Stability(Stable) static CfnConnectorProfilePropsMixin.SnowflakeConnectorProfilePropertiesProperty.Builder builder()
-