Amazon.Runtime.FallbackCredentialsFactory.Reset C# (CSharp) 메소드

Reset() 공개 정적인 메소드

public static Reset ( ) : void
리턴 void
        public static void Reset()
        {
            CredentialsGenerators = new List<CredentialsGenerator>
            {
#if BCL
                () => new EnvironmentAWSCredentials(),
#endif
                () => new InstanceProfileAWSCredentials()
            };
        }