Class FederatedAWSCredentialsOptions
Options that control the behavior of FederatedAWSCredentials.
public class FederatedAWSCredentialsOptions
- Inheritance
-
FederatedAWSCredentialsOptions
- Inherited Members
Constructors
FederatedAWSCredentialsOptions()
public FederatedAWSCredentialsOptions()
Properties
CredentialRequestCallback
FederatedAWSCredentials uses this callback to get credentials if the UserIdentity is set.
public Func<CredentialRequestCallbackArgs, NetworkCredential> CredentialRequestCallback { get; set; }
Property Value
CustomCallbackState
When FederatedAWSCredentials makes a callback for credentials, this state will be included for use by the callback handler.
public object CustomCallbackState { get; set; }
Property Value
ProfileName
The profile name, if this FederatedAWSCredentialsOptions is associated with a CredentialProfile.
public string ProfileName { get; set; }
Property Value
ProxySettings
The proxy settings to use when calling the Secure Token Service and the ADFS endpoint.
public WebProxy ProxySettings { get; set; }
Property Value
STSRegion
Set this property when a region-specific STS endpoint must be used (eg cn-north-1). If left empty/null, the global sts.amazonaws.com endpoint will be used when credentials are obtained.
public RegionEndpoint STSRegion { get; set; }
Property Value
UserIdentity
The identity to use when authenticating. This is in the form domain\username, or just username. If this option is not set, the current user's identity will be used.
public string UserIdentity { get; set; }