本文整理汇总了C#中Amazon.ElasticMapReduce.AmazonElasticMapReduceConfig类的典型用法代码示例。如果您正苦于以下问题:C# AmazonElasticMapReduceConfig类的具体用法?C# AmazonElasticMapReduceConfig怎么用?C# AmazonElasticMapReduceConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AmazonElasticMapReduceConfig类属于Amazon.ElasticMapReduce命名空间,在下文中一共展示了AmazonElasticMapReduceConfig类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AmazonElasticMapReduceClient
/// <summary>
/// Constructs AmazonElasticMapReduceClient with AWS Access Key ID, AWS Secret Key and an
/// AmazonElasticMapReduceClient 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 AmazonElasticMapReduceClient Configuration Object</param>
public AmazonElasticMapReduceClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonElasticMapReduceConfig clientConfig)
: base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig)
{
}
示例2: CreateAmazonElasticMapReduceClient
/// <summary>
/// Create a client for the Amazon ElasticMapReduce 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 ElasticMapReduce client</returns>
/// <remarks>
/// </remarks>
public static AmazonElasticMapReduce CreateAmazonElasticMapReduceClient(
string awsAccessKey,
string awsSecretAccessKey,
AmazonElasticMapReduceConfig config
)
{
return new AmazonElasticMapReduceClient(awsAccessKey, awsSecretAccessKey, config);
}
示例3: AmazonElasticMapReduceClient
/// <summary>
/// Constructs AmazonElasticMapReduceClient with AWS Access Key ID, AWS Secret Key and an
/// AmazonElasticMapReduceClient 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 AmazonElasticMapReduceClient Configuration Object</param>
public AmazonElasticMapReduceClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonElasticMapReduceConfig clientConfig)
: base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig, AuthenticationTypes.User | AuthenticationTypes.Session)
{
}
示例4: AmazonElasticMapReduceClient
/// <summary>
/// Constructs AmazonElasticMapReduceClient with the credentials defined in the App.config.
///
/// Example App.config with credentials set.
/// <code>
/// <?xml version="1.0" encoding="utf-8" ?>
/// <configuration>
/// <appSettings>
/// <add key="AWSAccessKey" value="********************"/>
/// <add key="AWSSecretKey" value="****************************************"/>
/// </appSettings>
/// </configuration>
/// </code>
///
/// </summary>
/// <param name="config">The AmazonElasticMapReduce Configuration Object</param>
public AmazonElasticMapReduceClient(AmazonElasticMapReduceConfig config)
: base(new EnvironmentAWSCredentials(), config, true, AuthenticationTypes.User)
{
}