当前位置: 首页>>代码示例>>C#>>正文


C# Redshift.AmazonRedshiftConfig类代码示例

本文整理汇总了C#中Amazon.Redshift.AmazonRedshiftConfig的典型用法代码示例。如果您正苦于以下问题:C# AmazonRedshiftConfig类的具体用法?C# AmazonRedshiftConfig怎么用?C# AmazonRedshiftConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


AmazonRedshiftConfig类属于Amazon.Redshift命名空间,在下文中一共展示了AmazonRedshiftConfig类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AmazonRedshiftClient

 /// <summary>
 /// Constructs AmazonRedshiftClient with AWS Access Key ID, AWS Secret Key and an
 /// AmazonRedshiftClient Configuration object. 
 /// </summary>
 /// <param name="awsAccessKeyId">AWS Access Key ID</param>
 /// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
 /// <param name="awsSessionToken">AWS Session Token</param>
 /// <param name="clientConfig">The AmazonRedshiftClient Configuration Object</param>
 public AmazonRedshiftClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonRedshiftConfig clientConfig)
     : base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig, AuthenticationTypes.User | AuthenticationTypes.Session)
 {
 }
开发者ID:rsparkyc,项目名称:aws-sdk-net,代码行数:12,代码来源:AmazonRedshiftClient.cs

示例2: CreateAmazonRedshiftClient

 /// <summary>
 /// Create a client for the Amazon Redshift service with the specified configuration
 /// </summary>
 /// <param name="awsAccessKey">The AWS Access Key associated with the account</param>
 /// <param name="awsSecretAccessKey">The AWS Secret Access Key associated with the account</param>
 /// <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc
 /// </param>
 /// <returns>An Amazon Redshift client</returns>
 /// <remarks>
 /// </remarks>
 public static AmazonRedshift CreateAmazonRedshiftClient(
     string awsAccessKey,
     string awsSecretAccessKey,
     AmazonRedshiftConfig config
     )
 {
     return new AmazonRedshiftClient(awsAccessKey, awsSecretAccessKey, config);
 }
开发者ID:rguarino4,项目名称:aws-sdk-net,代码行数:18,代码来源:AWSClientFactory.cs

示例3: AmazonRedshiftClient

 /// <summary>
 /// Constructs AmazonRedshiftClient with AWS Access Key ID, AWS Secret Key and an
 /// AmazonRedshiftClient Configuration object. 
 /// </summary>
 /// <param name="awsAccessKeyId">AWS Access Key ID</param>
 /// <param name="awsSecretAccessKey">AWS Secret Access Key</param>
 /// <param name="awsSessionToken">AWS Session Token</param>
 /// <param name="clientConfig">The AmazonRedshiftClient Configuration Object</param>
 public AmazonRedshiftClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonRedshiftConfig clientConfig)
     : base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig)
 {
 }
开发者ID:borik,项目名称:aws-sdk-net,代码行数:12,代码来源:AmazonRedshiftClient.cs

示例4: EstablishClient

        private OperationResult EstablishClient(AddonManifest manifest, RedshiftDeveloperOptions devOptions, out AmazonRedshiftClient client)
        {
            OperationResult result;

            bool requireCreds;
            var manifestprops = manifest.GetProperties().ToDictionary(x => x.Key, x => x.Value);
            var AccessKey = manifestprops["AWSClientKey"];
            var SecretAccessKey = manifestprops["AWSSecretKey"];
            var _RegionEndpoint = manifestprops["AWSRegionEndpoint"];

            var prop =
                manifest.Properties.First(
                    p => p.Key.Equals("requireDevCredentials", StringComparison.InvariantCultureIgnoreCase));

            if (bool.TryParse(prop.Value, out requireCreds) && requireCreds)
            {
                if (!ValidateDevCreds(devOptions))
                {
                    client = null;
                    result = new OperationResult()
                    {
                        IsSuccess = false,
                        EndUserMessage =
                            "The add on requires that developer credentials are specified but none were provided."
                    };
                    return result;
                }

            }
            AmazonRedshiftConfig config = new AmazonRedshiftConfig() { RegionEndpoint = RegionEndpoint.USEast1 };
            client = new AmazonRedshiftClient(AccessKey, SecretAccessKey, config);
            result = new OperationResult { IsSuccess = true };
            return result;
        }
开发者ID:ernestohs,项目名称:Apprenda-AWS-Integration,代码行数:34,代码来源:RedshiftAddOn.cs


注:本文中的Amazon.Redshift.AmazonRedshiftConfig类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。