本文整理汇总了C#中Amazon.RDS.AmazonRDSConfig类的典型用法代码示例。如果您正苦于以下问题:C# AmazonRDSConfig类的具体用法?C# AmazonRDSConfig怎么用?C# AmazonRDSConfig使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AmazonRDSConfig类属于Amazon.RDS命名空间,在下文中一共展示了AmazonRDSConfig类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AmazonRDSClient
/// <summary>
/// Constructs AmazonRDSClient with AWS Credentials and an
/// AmazonRDSClient Configuration object.
/// </summary>
/// <param name="credentials">AWS Credentials</param>
/// <param name="clientConfig">The AmazonRDSClient Configuration Object</param>
public AmazonRDSClient(AWSCredentials credentials, AmazonRDSConfig clientConfig)
: base(credentials, clientConfig, false, AuthenticationTypes.User | AuthenticationTypes.Session)
{
}
示例2: CreateAmazonRDSClient
/// <summary>
/// Create a client for the Amazon RDS Service with AWSCredentials and an AmazonRDS 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 RDS client</returns>
/// <remarks>
/// </remarks>
public static AmazonRDS CreateAmazonRDSClient(AWSCredentials credentials, AmazonRDSConfig config)
{
return new AmazonRDSClient(credentials, config);
}
示例3: AmazonRDSClient
/// <summary>
/// Constructs AmazonRDSClient with AWS Access Key ID, AWS Secret Key and an
/// AmazonRDSClient 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 AmazonRDSClient Configuration Object</param>
public AmazonRDSClient(string awsAccessKeyId, string awsSecretAccessKey, string awsSessionToken, AmazonRDSConfig clientConfig)
: base(awsAccessKeyId, awsSecretAccessKey, awsSessionToken, clientConfig)
{
}
示例4: AmazonRDSClient
/// <summary>
/// Constructs AmazonRDSClient 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 AmazonRDS Configuration Object</param>
public AmazonRDSClient(AmazonRDSConfig config)
: base(new EnvironmentAWSCredentials(), config, true, AuthenticationTypes.User)
{
}
示例5: EstablishClient
private OperationResult EstablishClient(AddonManifest manifest, DeveloperOptions devOptions, out AmazonRDSClient 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;
}
accessKey = devOptions.AccessKey;
secretAccessKey = devOptions.SecretAccessKey;
}
AmazonRDSConfig config = new AmazonRDSConfig() { RegionEndpoint = RegionEndpoint.USEast1 };
client = new AmazonRDSClient(accessKey, secretAccessKey, config);
result = new OperationResult { IsSuccess = true };
return result;
}