Configuration for accessing Amazon Redshift service
상속: Amazon.Runtime.ClientConfig
예제 #1
0
 /// <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)
 {
 }
예제 #2
0
 /// <summary>
 /// Constructs AmazonRedshiftClient with the credentials loaded from the application's
 /// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
 /// 
 /// Example App.config with credentials set. 
 /// <code>
 /// &lt;?xml version="1.0" encoding="utf-8" ?&gt;
 /// &lt;configuration&gt;
 ///     &lt;appSettings&gt;
 ///         &lt;add key="AWSAccessKey" value="********************"/&gt;
 ///         &lt;add key="AWSSecretKey" value="****************************************"/&gt;
 ///     &lt;/appSettings&gt;
 /// &lt;/configuration&gt;
 /// </code>
 ///
 /// </summary>
 /// <param name="config">The AmazonRedshift Configuration Object</param>
 public AmazonRedshiftClient(AmazonRedshiftConfig config)
     : base(FallbackCredentialsFactory.GetCredentials(), config, AuthenticationTypes.User | AuthenticationTypes.Session) { }
예제 #3
0
 /// <summary>
 /// Constructs AmazonRedshiftClient with AWS Credentials and an
 /// AmazonRedshiftClient Configuration object.
 /// </summary>
 /// <param name="credentials">AWS Credentials</param>
 /// <param name="clientConfig">The AmazonRedshiftClient Configuration Object</param>
 public AmazonRedshiftClient(AWSCredentials credentials, AmazonRedshiftConfig clientConfig)
     : base(credentials, clientConfig, AuthenticationTypes.User | AuthenticationTypes.Session)
 {
 }
예제 #4
0
 /// <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);
 }
예제 #5
0
 /// <summary>
 /// Create a client for the Amazon Redshift Service with AWSCredentials and an AmazonRedshift Configuration object.
 /// </summary>
 /// <param name="credentials">AWS Credentials</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(AWSCredentials credentials, AmazonRedshiftConfig config)
 {
     return new AmazonRedshiftClient(credentials, config);
 }
예제 #6
0
 /// <summary>
 /// Create a client for the Amazon Redshift Service with the credentials loaded from the application's
 /// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
 /// 
 /// Example App.config with credentials set. 
 /// <code>
 /// &lt;?xml version="1.0" encoding="utf-8" ?&gt;
 /// &lt;configuration&gt;
 ///     &lt;appSettings&gt;
 ///         &lt;add key="AWSAccessKey" value="********************"/&gt;
 ///         &lt;add key="AWSSecretKey" value="****************************************"/&gt;
 ///     &lt;/appSettings&gt;
 /// &lt;/configuration&gt;
 /// </code>
 /// </summary>
 /// <param name="config">Configuration options for the service like HTTP Proxy, # of connections, etc</param>
 /// <returns>An Amazon Redshift client</returns>
 public static AmazonRedshift CreateAmazonRedshiftClient(AmazonRedshiftConfig config)
 {
     return new AmazonRedshiftClient(config);
 }
예제 #7
0
 /// <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)
 {
 }
예제 #8
0
 /// <summary>
 /// Constructs AmazonRedshiftClient with AWS Credentials and an
 /// AmazonRedshiftClient Configuration object.
 /// </summary>
 /// <param name="credentials">AWS Credentials</param>
 /// <param name="clientConfig">The AmazonRedshiftClient Configuration Object</param>
 public AmazonRedshiftClient(AWSCredentials credentials, AmazonRedshiftConfig clientConfig)
     : base(credentials, clientConfig)
 {
 }
예제 #9
0
 /// <summary>
 /// Constructs AmazonRedshiftClient with the credentials loaded from the application's
 /// default configuration, and if unsuccessful from the Instance Profile service on an EC2 instance.
 /// 
 /// Example App.config with credentials set. 
 /// <code>
 /// &lt;?xml version="1.0" encoding="utf-8" ?&gt;
 /// &lt;configuration&gt;
 ///     &lt;appSettings&gt;
 ///         &lt;add key="AWSProfileName" value="AWS Default"/&gt;
 ///     &lt;/appSettings&gt;
 /// &lt;/configuration&gt;
 /// </code>
 ///
 /// </summary>
 /// <param name="config">The AmazonRedshiftClient Configuration Object</param>
 public AmazonRedshiftClient(AmazonRedshiftConfig config)
     : base(FallbackCredentialsFactory.GetCredentials(), config) { }
        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;
        }