Amazon.Runtime.AWSRegion.SetRegionFromName C# (CSharp) 메소드

SetRegionFromName() 보호된 메소드

Sets the Region property by looking up the corresponding RegionEndpoint from the supplied region system name (us-east-1, us-west-2 etc).
protected SetRegionFromName ( string regionSystemName ) : void
regionSystemName string The system name of the region.
리턴 void
        protected void SetRegionFromName(string regionSystemName)
        {
            Region = RegionEndpoint.GetBySystemName(regionSystemName);
        }
    }